Commit a526c1f9 authored by Frédéric Buclin's avatar Frédéric Buclin

Bug 730598: Running checksetup.pl twice deletes the DEFAULT value of the bug_see_also.class column

r=timello a=LpSolit
parent 50ee6eb2
...@@ -3597,7 +3597,7 @@ sub _populate_bug_see_also_class { ...@@ -3597,7 +3597,7 @@ sub _populate_bug_see_also_class {
if ($dbh->bz_column_info('bug_see_also', 'class')) { if ($dbh->bz_column_info('bug_see_also', 'class')) {
# The length was incorrectly set to 64 instead of 255. # The length was incorrectly set to 64 instead of 255.
$dbh->bz_alter_column('bug_see_also', 'class', $dbh->bz_alter_column('bug_see_also', 'class',
{TYPE => 'varchar(255)', NOTNULL => 1}); {TYPE => 'varchar(255)', NOTNULL => 1, DEFAULT => "''"});
return; return;
} }
......
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