From f89628e1b15f9686e18ccf0ce55743e51f74a90e Mon Sep 17 00:00:00 2001 From: umherirrender Date: Sat, 26 Apr 2014 19:03:29 +0200 Subject: [PATCH] Add version comments for 1.24 to all updaters pp_sortkey was added with I217c42656fb877ff35a36eb446a22bdaf119faac, which is part of 1.24, so adding the comment before that. Change-Id: I7b970705ad7de75cb9542f8a5a963697386940a7 --- includes/installer/MssqlUpdater.php | 2 ++ includes/installer/MysqlUpdater.php | 2 ++ includes/installer/OracleUpdater.php | 2 ++ includes/installer/SqliteUpdater.php | 2 ++ 4 files changed, 8 insertions(+) diff --git a/includes/installer/MssqlUpdater.php b/includes/installer/MssqlUpdater.php index 49e7b40a1a..f9c4287b41 100644 --- a/includes/installer/MssqlUpdater.php +++ b/includes/installer/MssqlUpdater.php @@ -39,6 +39,8 @@ class MssqlUpdater extends DatabaseUpdater { return array( // 1.23 array( 'addField', 'mwuser', 'user_password_expires', 'patch-user_password_expires.sql' ), + + // 1.24 ); } } diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index be1c8a7189..3bc43d9182 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -250,6 +250,8 @@ class MysqlUpdater extends DatabaseUpdater { array( 'addIndex', 'logging', 'log_user_text_time', 'patch-logging_user_text_time_index.sql' ), array( 'addField', 'page', 'page_links_updated', 'patch-page_links_updated.sql' ), array( 'addField', 'user', 'user_password_expires', 'patch-user_password_expire.sql' ), + + // 1.24 array( 'addField', 'page_props', 'pp_sortkey', 'patch-pp_sortkey.sql' ), ); } diff --git a/includes/installer/OracleUpdater.php b/includes/installer/OracleUpdater.php index 5e10af151c..68a5519845 100644 --- a/includes/installer/OracleUpdater.php +++ b/includes/installer/OracleUpdater.php @@ -98,6 +98,8 @@ class OracleUpdater extends DatabaseUpdater { array( 'addIndex', 'logging', 'i07', 'patch-logging_user_text_time_index.sql' ), array( 'addField', 'user', 'user_password_expires', 'patch-user_password_expire.sql' ), + //1.24 + // KEEP THIS AT THE BOTTOM!! array( 'doRebuildDuplicateFunction' ), diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index 15f8160de4..874bbea94d 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -128,6 +128,8 @@ class SqliteUpdater extends DatabaseUpdater { array( 'addIndex', 'logging', 'log_user_text_time', 'patch-logging_user_text_time_index.sql' ), array( 'addField', 'page', 'page_links_updated', 'patch-page_links_updated.sql' ), array( 'addField', 'user', 'user_password_expires', 'patch-user_password_expire.sql' ), + + // 1.24 array( 'addField', 'page_props', 'pp_sortkey', 'patch-pp_sortkey.sql' ), ); } -- 2.20.1