summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-09-16 09:18:46 +0200
committermkanat%bugzilla.org <>2006-09-16 09:18:46 +0200
commitcc3a19cb43e162ede1237986ea535a42c03cb423 (patch)
tree5760e6bbfc34ca0e77481cc46dd1ced158a93159 /Bugzilla/Install
parent4d734cd3df63127e644af23ac8fb822b6516e3fe (diff)
downloadbugzilla-cc3a19cb43e162ede1237986ea535a42c03cb423.tar.gz
bugzilla-cc3a19cb43e162ede1237986ea535a42c03cb423.tar.xz
Bug 351888: Move comment creation out of post_bug.cgi and into Bugzilla::Bug
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=mkanat, a=myk
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm3
1 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index 2e364c540..d1d154c53 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -493,6 +493,9 @@ sub update_table_definitions {
$dbh->bz_add_column('setting', 'subclass', {TYPE => 'varchar(32)'});
+ $dbh->bz_alter_column('longdescs', 'thetext',
+ { TYPE => 'MEDIUMTEXT', NOTNULL => 1 }, '');
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################