- Corrected previous patch. Thanks Robert.

5.x
Dries Buytaert 2006-11-24 11:10:48 +00:00
parent 0856457405
commit 4df25c20cb
1 changed files with 18 additions and 18 deletions

View File

@ -3070,24 +3070,6 @@ function system_update_182() {
return $ret; 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 * @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(); 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" * @} End of "defgroup updates-4.7-to-x.x"
*/ */