Merge "Add version comments for 1.24 to all updaters"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Tue, 6 May 2014 13:04:41 +0000 (13:04 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Tue, 6 May 2014 13:04:41 +0000 (13:04 +0000)
includes/installer/MssqlUpdater.php
includes/installer/MysqlUpdater.php
includes/installer/OracleUpdater.php
includes/installer/SqliteUpdater.php

index 49e7b40..f9c4287 100644 (file)
@@ -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
                );
        }
 }
index be1c8a7..3bc43d9 100644 (file)
@@ -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' ),
                );
        }
index 5e10af1..68a5519 100644 (file)
@@ -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' ),
 
index 15f8160..874bbea 100644 (file)
@@ -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' ),
                );
        }