diff options
author | tara%tequilarista.org <> | 2001-06-17 08:01:12 +0200 |
---|---|---|
committer | tara%tequilarista.org <> | 2001-06-17 08:01:12 +0200 |
commit | 4fdd6b8ccb7e11a1d4bd6cf85552622409aca758 (patch) | |
tree | 7cb728d6341e671ed4025c7bbb586aad0d6c8ea7 | |
parent | ac03b19a3eeda57e38dd90bbb8333f77039c944f (diff) | |
download | bugzilla-4fdd6b8ccb7e11a1d4bd6cf85552622409aca758.tar.gz bugzilla-4fdd6b8ccb7e11a1d4bd6cf85552622409aca758.tar.xz |
applying handy patch to refix version table to be 64 instead of 16--partial fix of bug 9352
-rwxr-xr-x | checksetup.pl | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 68d72b39e..ed90b6f5d 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -709,7 +709,7 @@ $table{bugs} = product varchar(64) not null, rep_platform enum($my_platforms), reporter mediumint not null, - version varchar(16) not null, + version varchar(64) not null, component varchar(50) not null, resolution enum("", "FIXED", "INVALID", "WONTFIX", "LATER", "REMIND", "DUPLICATE", "WORKSFORME", "MOVED") not null, target_milestone varchar(20) not null default "---", @@ -2184,6 +2184,10 @@ if (-d 'shadow') { DropField("profiles", "emailnotification"); DropField("profiles", "newemailtech"); +# 2001-06-15 kiko@async.com.br - Change bug:version size to avoid +# truncates re http://bugzilla.mozilla.org/show_bug.cgi?id=9352 +ChangeFieldType('bugs', 'version','varchar(64) not null'); + # If you had to change the --TABLE-- definition in any way, then add your # differential change code *** A B O V E *** this comment. # |