X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Finstaller%2FMssqlUpdater.php;h=2e339997c4117d503736da425186ee4996b5459a;hb=48f931b9cb0f4b53e84cfc090e4313f71a130941;hp=694cd294c55fa30201f23591137b4a54c2f25abc;hpb=165217365bfb94ad17bfef86b412eb9e2eb0508b;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/installer/MssqlUpdater.php b/includes/installer/MssqlUpdater.php index 694cd294c5..2e339997c4 100644 --- a/includes/installer/MssqlUpdater.php +++ b/includes/installer/MssqlUpdater.php @@ -108,6 +108,9 @@ class MssqlUpdater extends DatabaseUpdater { // Should have been in 1.30 [ 'addTable', 'comment', 'patch-comment-table.sql' ], + // This field was added in 1.31, but is put here so it can be used by 'migrateComments' + [ 'addField', 'image', 'img_description_id', 'patch-image-img_description_id.sql' ], + // Should have been in 1.30 [ 'migrateComments' ], // 1.31 @@ -121,6 +124,10 @@ class MssqlUpdater extends DatabaseUpdater { [ 'migrateActors' ], [ 'modifyField', 'revision', 'rev_text_id', 'patch-rev_text_id-default.sql' ], [ 'modifyTable', 'site_stats', 'patch-site_stats-modify.sql' ], + [ 'populateArchiveRevId' ], + [ 'modifyField', 'recentchanges', 'rc_patrolled', 'patch-rc_patrolled_type.sql' ], + [ 'addIndex', 'recentchanges', 'rc_namespace_title_timestamp', + 'patch-recentchanges-nttindex.sql' ], ]; }