aboutsummaryrefslogtreecommitdiffstats
path: root/install/upgrade_1.4.1.php
diff options
context:
space:
mode:
Diffstat (limited to 'install/upgrade_1.4.1.php')
-rw-r--r--install/upgrade_1.4.1.php64
1 files changed, 64 insertions, 0 deletions
diff --git a/install/upgrade_1.4.1.php b/install/upgrade_1.4.1.php
index a5f8f38c6..615e0d4ec 100644
--- a/install/upgrade_1.4.1.php
+++ b/install/upgrade_1.4.1.php
@@ -287,6 +287,70 @@ foreach ($queries as $query)
pwg_query($query);
}
+// delete obsolete users table colums
+$queries = array(
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN status
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN nb_image_line
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN maxheight
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN language
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN nb_line_page
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN expand
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN template
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN maxwidth
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN show_nb_comments
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ DROP COLUMN recent_period
+;",
+
+ "
+ALTER TABLE phpwebgallery_users
+ CHANGE COLUMN password password varchar(32) default NULL
+;"
+ );
+
+foreach ($queries as $query)
+{
+ $query = str_replace('phpwebgallery_', PREFIX_TABLE, $query);
+ pwg_query($query);
+}
+
$infos = array();
if ($prefix_thumbnail != 'TN-')