summaryrefslogtreecommitdiff
path: root/database
diff options
context:
space:
mode:
Diffstat (limited to 'database')
-rw-r--r--database/updates.inc15
1 files changed, 0 insertions, 15 deletions
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;
-}