summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2012-02-27 15:08:59 +0100
committerFrédéric Buclin <LpSolit@gmail.com>2012-02-27 15:08:59 +0100
commita526c1f92b6818a8960280791abea805d8c79595 (patch)
treeb43ca325e09ab9114aab6a053889f89e155d8a55 /Bugzilla/Install
parent50ee6eb2ff149ab3f3b67af839680a0e2ea9eedc (diff)
downloadbugzilla-a526c1f92b6818a8960280791abea805d8c79595.tar.gz
bugzilla-a526c1f92b6818a8960280791abea805d8c79595.tar.xz
Bug 730598: Running checksetup.pl twice deletes the DEFAULT value of the bug_see_also.class column
r=timello a=LpSolit
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 33da1cba8..e48a36cff 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -3597,7 +3597,7 @@ sub _populate_bug_see_also_class {
if ($dbh->bz_column_info('bug_see_also', 'class')) {
# The length was incorrectly set to 64 instead of 255.
$dbh->bz_alter_column('bug_see_also', 'class',
- {TYPE => 'varchar(255)', NOTNULL => 1});
+ {TYPE => 'varchar(255)', NOTNULL => 1, DEFAULT => "''"});
return;
}