Correct version section for rc_source in the updaters
authorumherirrender <umherirrender_de.wp@web.de>
Thu, 21 Nov 2013 20:54:30 +0000 (21:54 +0100)
committerUmherirrender <umherirrender_de.wp@web.de>
Tue, 26 Nov 2013 21:21:00 +0000 (21:21 +0000)
The patch for rc_source was reverted and at the end was merged for
version 1.23 (I5412466444526986e1209d0982dd62cd5b387ad1).

Release notes was already moved with
I5113828701fde7d21c81ef3219d04202a9073f00

Change-Id: If3b41a800f4982745eb883d5c4ac270ac75ffaa9

includes/installer/MysqlUpdater.php
includes/installer/PostgresUpdater.php
includes/installer/SqliteUpdater.php

index 0f4faec..6277302 100644 (file)
@@ -242,6 +242,8 @@ class MysqlUpdater extends DatabaseUpdater {
                                'patch-iwlinks-from-title-index.sql' ),
                        array( 'addField', 'archive', 'ar_id', 'patch-archive-ar_id.sql' ),
                        array( 'addField', 'externallinks', 'el_id', 'patch-externallinks-el_id.sql' ),
+
+                       // 1.23
                        array( 'addField', 'recentchanges', 'rc_source', 'patch-rc_source.sql' ),
                );
        }
index cea4d78..e8a1c80 100644 (file)
@@ -398,7 +398,7 @@ class PostgresUpdater extends DatabaseUpdater {
                        # end
                        array( 'tsearchFixes' ),
 
-                       // 1.22
+                       // 1.23
                        array( 'addPgField', 'recentchanges', 'rc_source',            "TEXT NOT NULL DEFAULT ''" ),
                );
        }
index 6fa22bc..439921b 100644 (file)
@@ -119,7 +119,7 @@ class SqliteUpdater extends DatabaseUpdater {
                        array( 'addField', 'archive', 'ar_id', 'patch-archive-ar_id.sql' ),
                        array( 'addField', 'externallinks', 'el_id', 'patch-externallinks-el_id.sql' ),
 
-                       // 1.22
+                       // 1.23
                        array( 'addField', 'recentchanges', 'rc_source', 'patch-rc_source.sql' ),
                );
        }