#59596, update sets system.weight to unsigned, patch by Heine

4.7.x
Gerhard Killesreiter 2006-04-20 16:34:31 +00:00
parent d5f22f121d
commit a99b66c704
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}