From: Reedy Date: Wed, 26 Aug 2015 08:09:28 +0000 (+0100) Subject: Move counter stuff to 1.26 section of MysqlUpdater X-Git-Tag: 1.31.0-rc.0~10269 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=2aa245e881ca249acd5f1505e2b264ee7319daa3;p=lhc%2Fweb%2Fwiklou.git Move counter stuff to 1.26 section of MysqlUpdater Change-Id: I8fdb03494bade2b8fb0766edcbfffd1f26f5c5e6 --- diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index 36d2c1dd31..aa60c01b5b 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -267,12 +267,14 @@ class MysqlUpdater extends DatabaseUpdater { 'patch-fa_major_mime-chemical.sql' ), // 1.25 - array( 'dropTable', 'hitcounter' ), - array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ), - array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ), array( 'doUserNewTalkUseridUnsigned' ), // note this patch covers other _comment and _description fields too array( 'modifyField', 'recentchanges', 'rc_comment', 'patch-editsummary-length.sql' ), + + // 1.26 + array( 'dropTable', 'hitcounter' ), + array( 'dropField', 'site_stats', 'ss_total_views', 'patch-drop-ss_total_views.sql' ), + array( 'dropField', 'page', 'page_counter', 'patch-drop-page_counter.sql' ), ); }