From d4a8853283a594ca723d3f7e4c5857d3aada05c9 Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Mon, 16 May 2011 23:22:51 +0000 Subject: [PATCH] Followup r88270: add new table to updaters --- includes/installer/MysqlUpdater.php | 3 +++ includes/installer/SqliteUpdater.php | 3 +++ 2 files changed, 6 insertions(+) diff --git a/includes/installer/MysqlUpdater.php b/includes/installer/MysqlUpdater.php index 3078718404..f4bc3ef521 100644 --- a/includes/installer/MysqlUpdater.php +++ b/includes/installer/MysqlUpdater.php @@ -180,6 +180,9 @@ class MysqlUpdater extends DatabaseUpdater { array( 'doUserNewTalkTimestampNotNull' ), array( 'addIndex', 'user', 'user_email', 'patch-user_email_index.sql' ), array( 'modifyField', 'user_properties', 'up_property', 'patch-up_property.sql' ), + + // 1.19 + array( 'addTable', 'config', 'patch-config.sql' ), ); } diff --git a/includes/installer/SqliteUpdater.php b/includes/installer/SqliteUpdater.php index d1a6c20bb5..5303ff4db5 100644 --- a/includes/installer/SqliteUpdater.php +++ b/includes/installer/SqliteUpdater.php @@ -52,6 +52,9 @@ class SqliteUpdater extends DatabaseUpdater { array( 'doCollationUpdate' ), array( 'addTable', 'msg_resource', 'patch-msg_resource.sql' ), array( 'addTable', 'module_deps', 'patch-module_deps.sql' ), + + // 1.19 + array( 'addTable', 'config', 'patch-config.sql' ), ); } -- 2.20.1