aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2011-09-20 21:04:17 +0100
committerChris Smith <toonarmy@phpbb.com>2011-09-20 21:06:53 +0100
commitcb245f5d04bcd36dd1ad8d3a95d7718ef5b15858 (patch)
tree908ae1d834d38356b7787f000f2368500fcb7a9b
parent364a69adc21c4fd9235a6693e0b8137e5779a925 (diff)
downloadforums-cb245f5d04bcd36dd1ad8d3a95d7718ef5b15858.tar
forums-cb245f5d04bcd36dd1ad8d3a95d7718ef5b15858.tar.gz
forums-cb245f5d04bcd36dd1ad8d3a95d7718ef5b15858.tar.bz2
forums-cb245f5d04bcd36dd1ad8d3a95d7718ef5b15858.tar.xz
forums-cb245f5d04bcd36dd1ad8d3a95d7718ef5b15858.zip
[feature/remove-db-styles] Add schema changes sinces 3.0.x.
PHPBB3-9741
-rw-r--r--phpBB/install/database_update.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 7f542974d9..18741191d8 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -1062,13 +1062,22 @@ function database_update_info()
),
),
'drop_columns' => array(
- STYLES_TABLE => array(
+ STYLES_TABLE => array(
'imageset_id',
),
+ STYLES_TEMPLATE_TABLE => array(
+ 'template_storedb',
+ ),
+ STYLES_THEME_TABLE => array(
+ 'theme_storedb',
+ 'theme_mtime',
+ 'theme_data',
+ ),
),
'drop_tables' => array(
STYLES_IMAGESET_TABLE,
STYLES_IMAGESET_DATA_TABLE,
+ STYLES_TEMPLATE_DATA_TABLE,
),
),
);