Commit 4fdd6b8c authored by tara%tequilarista.org's avatar tara%tequilarista.org

applying handy patch to refix version table to be 64 instead of 16--partial fix of bug 9352

parent ac03b19a
...@@ -709,7 +709,7 @@ $table{bugs} = ...@@ -709,7 +709,7 @@ $table{bugs} =
product varchar(64) not null, product varchar(64) not null,
rep_platform enum($my_platforms), rep_platform enum($my_platforms),
reporter mediumint not null, reporter mediumint not null,
version varchar(16) not null, version varchar(64) not null,
component varchar(50) not null, component varchar(50) not null,
resolution enum("", "FIXED", "INVALID", "WONTFIX", "LATER", "REMIND", "DUPLICATE", "WORKSFORME", "MOVED") not null, resolution enum("", "FIXED", "INVALID", "WONTFIX", "LATER", "REMIND", "DUPLICATE", "WORKSFORME", "MOVED") not null,
target_milestone varchar(20) not null default "---", target_milestone varchar(20) not null default "---",
...@@ -2184,6 +2184,10 @@ if (-d 'shadow') { ...@@ -2184,6 +2184,10 @@ if (-d 'shadow') {
DropField("profiles", "emailnotification"); DropField("profiles", "emailnotification");
DropField("profiles", "newemailtech"); 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 # If you had to change the --TABLE-- definition in any way, then add your
# differential change code *** A B O V E *** this comment. # differential change code *** A B O V E *** this comment.
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment