From 2aa245e881ca249acd5f1505e2b264ee7319daa3 Mon Sep 17 00:00:00 2001 From: Reedy Date: Wed, 26 Aug 2015 09:09:28 +0100 Subject: [PATCH] Move counter stuff to 1.26 section of MysqlUpdater Change-Id: I8fdb03494bade2b8fb0766edcbfffd1f26f5c5e6 --- includes/installer/MysqlUpdater.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) 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' ), ); } -- 2.20.1