summaryrefslogtreecommitdiff
path: root/update.php
diff options
context:
space:
mode:
authorGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-20 16:34:31 +0000
committerGerhard Killesreiter <killes_www_drop_org@227.no-reply.drupal.org>2006-04-20 16:34:31 +0000
commita99b66c70483102ebcd3ce3dc872b07bf8927d76 (patch)
tree95465a592d9b4ab3d7713162a89f38bf7b7fad40 /update.php
parentd5f22f121dc969a68e7e15921351a4141c11d6c9 (diff)
downloadbrdo-a99b66c70483102ebcd3ce3dc872b07bf8927d76.tar.gz
brdo-a99b66c70483102ebcd3ce3dc872b07bf8927d76.tar.bz2
#59596, update sets system.weight to unsigned, patch by Heine
Diffstat (limited to 'update.php')
-rw-r--r--update.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.php b/update.php
index d3b332926..ff607cec1 100644
--- a/update.php
+++ b/update.php
@@ -571,7 +571,7 @@ function update_fix_system_table() {
break;
case 'mysql':
case 'mysqli':
- $ret[] = update_sql("ALTER TABLE {system} ADD weight tinyint(3) unsigned default '0' NOT NULL, ADD KEY (weight)");
+ $ret[] = update_sql("ALTER TABLE {system} ADD weight tinyint(2) default '0' NOT NULL, ADD KEY (weight)");
break;
}
}