diff options
author | wicked%sci.fi <> | 2009-04-06 22:57:13 +0200 |
---|---|---|
committer | wicked%sci.fi <> | 2009-04-06 22:57:13 +0200 |
commit | 0665a74437c43e2a7805ba068b1a47ea59124787 (patch) | |
tree | 2e158219d1ef98d2ff225b0b3ff629363a6541ed /Bugzilla/DB | |
parent | 1633d9835c4ab45d583ba4b6d8b585d66925a5b2 (diff) | |
download | bugzilla-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/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index fc4361d17..aacbe386b 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -1334,6 +1334,8 @@ use constant ABSTRACT_SCHEMA => { DELETE => 'CASCADE'}}, subject => {TYPE => 'varchar(128)'}, body => {TYPE => 'MEDIUMTEXT'}, + mailifnobugs => {TYPE => 'BOOLEAN', NOTNULL => 1, + DEFAULT => 'FALSE'}, ], }, |