From b84bf002abd4b078d5f5f4acf5d820eafcde7012 Mon Sep 17 00:00:00 2001 From: umherirrender Date: Thu, 21 Nov 2013 21:54:30 +0100 Subject: [PATCH] Correct version section for rc_source in the updaters 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 | 2 ++ includes/installer/PostgresUpdater.php | 2 +- includes/installer/SqliteUpdater.php | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index 0f4faec701..6277302d3c 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -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' ), ); } diff --git a/includes/installer/PostgresUpdater.php b/includes/installer/PostgresUpdater.php index cea4d782c5..e8a1c80570 100644 --- a/includes/installer/PostgresUpdater.php +++ b/includes/installer/PostgresUpdater.php @@ -398,7 +398,7 @@ class PostgresUpdater extends DatabaseUpdater { # end array( 'tsearchFixes' ), - // 1.22 + // 1.23 array( 'addPgField', 'recentchanges', 'rc_source', "TEXT NOT NULL DEFAULT ''" ), ); } diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index 6fa22bc924..439921b4fe 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -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' ), ); } -- 2.20.1