summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install/DB.pm
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2012-02-29 22:38:42 +0100
committerDave Lawrence <dlawrence@mozilla.com>2012-02-29 22:38:42 +0100
commit07fbbbb38bdb82896d39d32d6d5fdecbec53cbb6 (patch)
treeb3b59e68e5fe63e5c58aa5dd8a3558893d19fb4d /Bugzilla/Install/DB.pm
parentbd9b4e99a6f4640c155468aea101db32ba9559b8 (diff)
parentbda60403ea62b195b678dff88387d9b392c7f4be (diff)
downloadbugzilla-07fbbbb38bdb82896d39d32d6d5fdecbec53cbb6.tar.gz
bugzilla-07fbbbb38bdb82896d39d32d6d5fdecbec53cbb6.tar.xz
merged with bugzilla/4.2
Diffstat (limited to 'Bugzilla/Install/DB.pm')
-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 7dc203933..14425ab40 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -3605,7 +3605,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;
}