From: umherirrender Date: Sat, 26 Apr 2014 17:03:29 +0000 (+0200) Subject: Add version comments for 1.24 to all updaters X-Git-Tag: 1.31.0-rc.0~15864^2 X-Git-Url: http://git.cyclocoop.org/%22%20.%20generer_url_ecrire%28%22config_fonctions%22%2C%20%22image_process=%24process%22%29%20.%20%22?a=commitdiff_plain;h=f89628e1b15f9686e18ccf0ce55743e51f74a90e;p=lhc%2Fweb%2Fwiklou.git 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 --- 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' ), ); }