summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Install
diff options
context:
space:
mode:
authorwicked%sci.fi <>2009-04-06 22:57:13 +0200
committerwicked%sci.fi <>2009-04-06 22:57:13 +0200
commit0665a74437c43e2a7805ba068b1a47ea59124787 (patch)
tree2e158219d1ef98d2ff225b0b3ff629363a6541ed /Bugzilla/Install
parent1633d9835c4ab45d583ba4b6d8b585d66925a5b2 (diff)
downloadbugzilla-0665a74437c43e2a7805ba068b1a47ea59124787.tar.gz
bugzilla-0665a74437c43e2a7805ba068b1a47ea59124787.tar.xz
Bug 302420: Allow whining messages to be sent even without any results - Patch by Micheal J. Tosh <michael.j.tosh@lmco.com> r=wicked a=mkanat
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r--Bugzilla/Install/DB.pm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm
index de1d48361..2247e58b3 100644
--- a/Bugzilla/Install/DB.pm
+++ b/Bugzilla/Install/DB.pm
@@ -564,6 +564,10 @@ sub update_table_definitions {
$dbh->bz_alter_column('group_control_map', 'canedit',
{TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'});
+ # 2009-01-16 oreomike@gmail.com - Bug 302420
+ $dbh->bz_add_column('whine_events', 'mailifnobugs',
+ { TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 'FALSE'});
+
################################################################
# New --TABLE-- changes should go *** A B O V E *** this point #
################################################################