From 748c69985e7839ad645974460e75c033ea6102d2 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 8 Jan 2006 16:15:53 +0000 Subject: - Patch by chx: critical bugfix: fixed the database upgrade path. --- database/updates.inc | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'database') diff --git a/database/updates.inc b/database/updates.inc index 10a73f3d7..e7a1a24be 100644 --- a/database/updates.inc +++ b/database/updates.inc @@ -1398,18 +1398,3 @@ function system_update_166() { return $ret; } -function system_update_167() { - $ret = array(); - switch ($GLOBALS['db_type']) { - case 'pgsql': - db_add_column($ret, 'system', 'weight', 'smallint', array('not null' => TRUE, 'default' => 0)); - $ret[] = update_sql('CREATE INDEX {system}_weight_idx ON {system} (weight)'); - break; - case 'mysql': - case 'mysqli': - $ret[] = update_sql("ALTER TABLE {system} ADD weight tinyint(3) unsigned default '0' NOT NULL, ADD KEY (weight)"); - break; - } - - return $ret; -} -- cgit v1.2.3