X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FSqliteUpdater.php;h=17ced507a25234f3b7d45a39a7402b018998dbfd;hb=a389d94551f1ece9112c66bf8a53f66d3c15c0b2;hp=2f39912c581ecab99f494a2f5b6bec8746795cfe;hpb=9ff8e0a94621ff441ba68f64de76c69a5b9c9319;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index 2f39912c58..17ced507a2 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -43,8 +43,6 @@ class SqliteUpdater extends DatabaseUpdater { // 1.15 [ 'addTable', 'change_tag', 'patch-change_tag.sql' ], - [ 'addTable', 'tag_summary', 'patch-tag_summary.sql' ], - [ 'addTable', 'valid_tag', 'patch-valid_tag.sql' ], // 1.16 [ 'addTable', 'user_properties', 'patch-user_properties.sql' ], @@ -54,7 +52,7 @@ class SqliteUpdater extends DatabaseUpdater { [ 'doLogUsertextPopulation' ], [ 'doLogSearchPopulation' ], [ 'addTable', 'l10n_cache', 'patch-l10n_cache.sql' ], - [ 'addIndex', 'tag_summary', 'tag_summary_rc_id', 'patch-change_tag-indexes.sql' ], + [ 'dropIndex', 'change_tag', 'ct_rc_id', 'patch-change_tag-indexes.sql' ], [ 'addField', 'redirect', 'rd_interwiki', 'patch-rd_interwiki.sql' ], [ 'sqliteSetupSearchindex' ], @@ -157,7 +155,6 @@ class SqliteUpdater extends DatabaseUpdater { [ 'addIndex', 'recentchanges', 'rc_name_type_patrolled_timestamp', 'patch-add-rc_name_type_patrolled_timestamp_index.sql' ], [ 'addField', 'change_tag', 'ct_id', 'patch-change_tag-ct_id.sql' ], - [ 'addField', 'tag_summary', 'ts_id', 'patch-tag_summary-ts_id.sql' ], // 1.29 [ 'addField', 'externallinks', 'el_index_60', 'patch-externallinks-el_index_60.sql' ], @@ -242,6 +239,16 @@ class SqliteUpdater extends DatabaseUpdater { // 1.33 [ 'dropField', 'change_tag', 'ct_tag', 'patch-drop-ct_tag.sql' ], + [ 'dropTable', 'valid_tag' ], + [ 'dropTable', 'tag_summary' ], + [ 'dropField', 'archive', 'ar_comment', 'patch-archive-drop-ar_comment.sql' ], + [ 'dropField', 'ipblocks', 'ipb_reason', 'patch-ipblocks-drop-ipb_reason.sql' ], + [ 'dropField', 'image', 'img_description', 'patch-image-drop-img_description.sql' ], + [ 'dropField', 'oldimage', 'oi_description', 'patch-oldimage-drop-oi_description.sql' ], + [ 'dropField', 'filearchive', 'fa_description', 'patch-filearchive-drop-fa_description.sql' ], + [ 'dropField', 'recentchanges', 'rc_comment', 'patch-recentchanges-drop-rc_comment.sql' ], + [ 'dropField', 'logging', 'log_comment', 'patch-logging-drop-log_comment.sql' ], + [ 'dropField', 'protected_titles', 'pt_reason', 'patch-protected_titles-drop-pt_reason.sql' ], ]; }