From 4df25c20cbfe5693e4860e0a2cdcc69714940bf0 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 24 Nov 2006 11:10:48 +0000 Subject: - Corrected previous patch. Thanks Robert. --- modules/system/system.install | 36 ++++++++++++++++++------------------ 1 file changed, 18 insertions(+), 18 deletions(-) (limited to 'modules') diff --git a/modules/system/system.install b/modules/system/system.install index 030b503c3..ce05973a1 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3070,24 +3070,6 @@ function system_update_182() { return $ret; } -/** - * Add an index on watchdog type. - */ -function system_update_183() { - $ret = array(); - switch ($GLOBALS['db_type']) { - case 'mysql': - case 'mysqli': - $ret[] = update_sql('ALTER TABLE {watchdog} ADD INDEX (type)'); - break; - case 'pgsql': - $ret[] = update_sql('CREATE INDEX {watchdog}_type_idx ON {watchdog}(type)'); - break; - } - return $ret; -} - - /** * @defgroup updates-4.7-to-5.0 System updates from 4.7 to 5.0 * @{ @@ -3395,6 +3377,24 @@ function system_update_1014() { return array(); } + +/** + * Add an index on watchdog type. + */ +function system_update_1015() { + $ret = array(); + switch ($GLOBALS['db_type']) { + case 'mysql': + case 'mysqli': + $ret[] = update_sql('ALTER TABLE {watchdog} ADD INDEX (type)'); + break; + case 'pgsql': + $ret[] = update_sql('CREATE INDEX {watchdog}_type_idx ON {watchdog}(type)'); + break; + } + return $ret; +} + /** * @} End of "defgroup updates-4.7-to-x.x" */ -- cgit v1.2.3