X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Finstaller%2FMssqlUpdater.php;h=b8dc5ff451a87f32cbb8d9fb720704e1ec3965a4;hp=db4cbdf39f4374dd5df7f57f3022f2c6a3ec479f;hb=dbdbeb7af2a7f0ee00bdc4dfc1297edf0405a8fd;hpb=e1c6ea78b8c31418493186e08059fc685b5ec6f3 diff --git a/includes/installer/MssqlUpdater.php b/includes/installer/MssqlUpdater.php index db4cbdf39f..b8dc5ff451 100644 --- a/includes/installer/MssqlUpdater.php +++ b/includes/installer/MssqlUpdater.php @@ -95,7 +95,6 @@ class MssqlUpdater 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' ], @@ -155,6 +154,9 @@ class MssqlUpdater extends DatabaseUpdater { // 1.33 [ 'dropField', 'change_tag', 'ct_tag', 'patch-drop-ct_tag.sql' ], + [ 'dropTable', 'valid_tag' ], + [ 'dropTable', 'tag_summary' ], + [ 'dropField', 'protected_titles', 'pt_reason', 'patch-drop-comment-fields.sql' ], ]; } @@ -164,6 +166,7 @@ class MssqlUpdater extends DatabaseUpdater { parent::applyPatch( $path, $isFullPath, $msg ); $this->db->scrollableCursor( $prevScroll ); $this->db->prepareStatements( $prevPrep ); + return true; } /**