diff options
Diffstat (limited to 'includes/installer')
-rw-r--r-- | includes/installer/MssqlUpdater.php | 3 | ||||
-rw-r--r-- | includes/installer/MysqlUpdater.php | 3 | ||||
-rw-r--r-- | includes/installer/OracleUpdater.php | 3 | ||||
-rw-r--r-- | includes/installer/PostgresUpdater.php | 6 | ||||
-rw-r--r-- | includes/installer/SqliteUpdater.php | 3 |
5 files changed, 16 insertions, 2 deletions
diff --git a/includes/installer/MssqlUpdater.php b/includes/installer/MssqlUpdater.php index 164cfab49926..308f7b03391e 100644 --- a/includes/installer/MssqlUpdater.php +++ b/includes/installer/MssqlUpdater.php @@ -64,6 +64,9 @@ class MssqlUpdater extends DatabaseUpdater { 'patch-oi_major_mime-chemical.sql' ), array( 'modifyField', 'filearchive', 'fa_major_mime', 'patch-fa_major_mime-chemical.sql' ), + + // 1.27 + array( 'dropTable', 'msg_resource_links' ), ); } diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index aa60c01b5bd1..f7beb7c66261 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -275,6 +275,9 @@ class MysqlUpdater extends DatabaseUpdater { array( 'dropTable', 'hitcounter' ), array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ), array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ), + + // 1.27 + array( 'dropTable', 'msg_resource_links' ), ); } diff --git a/includes/installer/OracleUpdater.php b/includes/installer/OracleUpdater.php index 03dbd1ce9c8f..d82009de2652 100644 --- a/includes/installer/OracleUpdater.php +++ b/includes/installer/OracleUpdater.php @@ -108,6 +108,9 @@ class OracleUpdater extends DatabaseUpdater { array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ), array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ), + // 1.27 + array( 'dropTable', 'msg_resource_links' ), + // KEEP THIS AT THE BOTTOM!! array( 'doRebuildDuplicateFunction' ), diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index 87e6566fd778..966f503a3e1f 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -86,7 +86,6 @@ class PostgresUpdater extends DatabaseUpdater { array( 'addTable', 'l10n_cache', 'patch-l10n_cache.sql' ), array( 'addTable', 'iwlinks', 'patch-iwlinks.sql' ), array( 'addTable', 'msg_resource', 'patch-msg_resource.sql' ), - array( 'addTable', 'msg_resource_links', 'patch-msg_resource_links.sql' ), array( 'addTable', 'module_deps', 'patch-module_deps.sql' ), array( 'addTable', 'uploadstash', 'patch-uploadstash.sql' ), array( 'addTable', 'user_former_groups', 'patch-user_former_groups.sql' ), @@ -424,7 +423,10 @@ class PostgresUpdater extends DatabaseUpdater { array( 'dropTable', 'hitcounter' ), array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ), array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ), - array( 'dropFkey', 'recentchanges', 'rc_cur_id' ) + array( 'dropFkey', 'recentchanges', 'rc_cur_id' ), + + // 1.27 + array( 'dropTable', 'msg_resource_links' ), ); } diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index 0de1fd7cc41d..9f992ecd4471 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -144,6 +144,9 @@ class SqliteUpdater extends DatabaseUpdater { array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ), array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ), array( 'modifyField', 'filearchive', 'fa_deleted_reason', 'patch-editsummary-length.sql' ), + + // 1.27 + array( 'dropTable', 'msg_resource_links' ), ); } |