mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-09 04:48:53 +00:00
[feature/remove-db-styles] Add schema changes sinces 3.0.x.
PHPBB3-9741
This commit is contained in:
parent
364a69adc2
commit
cb245f5d04
1 changed files with 10 additions and 1 deletions
|
@ -1062,13 +1062,22 @@ function database_update_info()
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'drop_columns' => array(
|
'drop_columns' => array(
|
||||||
STYLES_TABLE => array(
|
STYLES_TABLE => array(
|
||||||
'imageset_id',
|
'imageset_id',
|
||||||
),
|
),
|
||||||
|
STYLES_TEMPLATE_TABLE => array(
|
||||||
|
'template_storedb',
|
||||||
|
),
|
||||||
|
STYLES_THEME_TABLE => array(
|
||||||
|
'theme_storedb',
|
||||||
|
'theme_mtime',
|
||||||
|
'theme_data',
|
||||||
|
),
|
||||||
),
|
),
|
||||||
'drop_tables' => array(
|
'drop_tables' => array(
|
||||||
STYLES_IMAGESET_TABLE,
|
STYLES_IMAGESET_TABLE,
|
||||||
STYLES_IMAGESET_DATA_TABLE,
|
STYLES_IMAGESET_DATA_TABLE,
|
||||||
|
STYLES_TEMPLATE_DATA_TABLE,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue