From: Andrew Garrett Date: Wed, 28 Jan 2009 19:44:58 +0000 (+0000) Subject: Move misplaced updates. I'd just put them at the bottom without paying attention... X-Git-Tag: 1.31.0-rc.0~43167 X-Git-Url: http://git.cyclocoop.org/url?a=commitdiff_plain;h=5a5eb400726156af0b3a6e5c2960389e0f487b57;p=lhc%2Fweb%2Fwiklou.git Move misplaced updates. I'd just put them at the bottom without paying attention to the fact that it was actually in the sqlite section :) --- diff --git a/maintenance/updaters.inc b/maintenance/updaters.inc index 9af5194fac..22b114faec 100644 --- a/maintenance/updaters.inc +++ b/maintenance/updaters.inc @@ -150,6 +150,9 @@ $wgUpdates = array( array( 'do_active_users_init' ), array( 'add_field', 'ipblocks', 'ipb_allow_usertalk', 'patch-ipb_allow_usertalk.sql' ), array( 'do_unique_pl_tl_il' ), + array( 'add_table', 'change_tag', 'patch-change_tag.sql' ), + array( 'add_table', 'tag_summary', 'patch-change_tag.sql' ), + array( 'add_table', 'valid_tag', 'patch-change_tag.sql' ), ), 'sqlite' => array( @@ -158,9 +161,6 @@ $wgUpdates = array( array( 'do_active_users_init' ), array( 'add_field', 'ipblocks', 'ipb_allow_usertalk', 'patch-ipb_allow_usertalk.sql' ), array( 'sqlite_initial_indexes' ), - array( 'add_table', 'change_tag', 'patch-change_tag.sql' ), - array( 'add_table', 'tag_summary', 'patch-change_tag.sql' ), - array( 'add_table', 'valid_tag', 'patch-change_tag.sql' ), ), );