X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FSqliteUpdater.php;h=80eb84330bd2d2d8d36c12b00a03abdb84bd5a44;hb=f8a777b9035b351e90bb89edf5be300317a2ee83;hp=fd9179b9e3ce2c3be0b2c57491159f119c0ca29b;hpb=2f1e5a8d22d7c005e72f8bdb732e6d7076ac3344;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index fd9179b9e3..80eb84330b 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -77,7 +77,6 @@ class SqliteUpdater extends DatabaseUpdater { [ 'addTable', 'user_former_groups', 'patch-user_former_groups.sql' ], // 1.19 - [ 'addIndex', 'logging', 'type_action', 'patch-logging-type-action-index.sql' ], [ 'doMigrateUserOptions' ], [ 'dropField', 'user', 'user_options', 'patch-drop-user_options.sql' ], [ 'addField', 'revision', 'rev_sha1', 'patch-rev_sha1.sql' ], @@ -222,6 +221,16 @@ class SqliteUpdater extends DatabaseUpdater { [ 'runMaintenance', DeduplicateArchiveRevId::class, 'maintenance/deduplicateArchiveRevId.php' ], [ 'addField', 'change_tag', 'ct_tag_id', 'patch-change_tag-tag_id.sql' ], [ 'addIndex', 'archive', 'ar_revid_uniq', 'patch-archive-ar_rev_id-unique.sql' ], + [ 'populateContentTables' ], + [ 'addIndex', 'logging', 'log_type_action', 'patch-logging-log-type-action-index.sql' ], + [ 'dropIndex', 'logging', 'type_action', 'patch-logging-drop-type-action-index.sql' ], + [ 'renameIndex', 'interwiki', 'iw_prefix', 'PRIMARY', false, 'patch-interwiki-fix-pk.sql' ], + [ 'renameIndex', 'page_props', 'pp_page_propname', 'PRIMARY', false, + 'patch-page_props-fix-pk.sql' ], + [ 'renameIndex', 'protected_titles', 'pt_namespace_title', 'PRIMARY', false, + 'patch-protected_titles-fix-pk.sql' ], + [ 'renameIndex', 'site_identifiers', 'site_ids_type', 'PRIMARY', false, + 'patch-site_identifiers-fix-pk.sql' ], ]; }