X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Finstaller%2FPostgresUpdater.php;h=8fd5370367e1c07f38d7b5fd16011ab63fc85c96;hp=932c9412fa1a02e08f67fc0cc9088cb611a6299d;hb=4df0c71911500466a6330b8fe29c623ef5b51e41;hpb=3ef209ce1019c3000f7349941cfd55484d71a653 diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index 932c9412fa..8fd5370367 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -590,6 +590,13 @@ class PostgresUpdater extends DatabaseUpdater { [ 'addIndex', 'interwiki', 'interwiki_pkey', 'patch-interwiki-pk.sql' ], [ 'addIndex', 'protected_titles', 'protected_titles_pkey', 'patch-protected_titles-pk.sql' ], [ 'addIndex', 'site_identifiers', 'site_identifiers_pkey', 'patch-site_identifiers-pk.sql' ], + [ 'addPgIndex', 'recentchanges', 'rc_this_oldid', '(rc_this_oldid)' ], + [ 'dropTable', 'transcache' ], + [ 'runMaintenance', PopulateChangeTagDef::class, 'maintenance/populateChangeTagDef.php' ], + [ 'addIndex', 'change_tag', 'change_tag_rc_tag_id', + 'patch-change_tag-change_tag_rc_tag_id.sql' ], + [ 'addPgField', 'ipblocks', 'ipb_sitewide', 'SMALLINT NOT NULL DEFAULT 1' ], + [ 'addTable', 'ipblocks_restrictions', 'patch-ipblocks_restrictions-table.sql' ], ]; }