From: Chad Horohoe Date: Mon, 16 May 2011 23:22:51 +0000 (+0000) Subject: Followup r88270: add new table to updaters X-Git-Tag: 1.31.0-rc.0~30115 X-Git-Url: http://git.cyclocoop.org///%22%40url%40//%22?a=commitdiff_plain;h=d4a8853283a594ca723d3f7e4c5857d3aada05c9;p=lhc%2Fweb%2Fwiklou.git Followup r88270: add new table to updaters --- 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' ), ); }