diff options
author | lpsolit%gmail.com <> | 2005-10-26 02:55:02 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-26 02:55:02 +0200 |
commit | 383e47ca9ec03a821519474555408c6e78152a7c (patch) | |
tree | b6b6da25c8d014f00ea3a02132663a021b6ebe87 /Bugzilla/DB | |
parent | 44de29d04d1ca7e3b047b2a847508dc949c29038 (diff) | |
download | bugzilla-383e47ca9ec03a821519474555408c6e78152a7c.tar.gz bugzilla-383e47ca9ec03a821519474555408c6e78152a7c.tar.xz |
Bug 313020: Implement the ability to add individual bugs to saved searches - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel a=justdave
Diffstat (limited to 'Bugzilla/DB')
-rw-r--r-- | Bugzilla/DB/Schema.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/DB/Schema.pm b/Bugzilla/DB/Schema.pm index 8379f0b12..5ffb41216 100644 --- a/Bugzilla/DB/Schema.pm +++ b/Bugzilla/DB/Schema.pm @@ -665,6 +665,7 @@ use constant ABSTRACT_SCHEMA => { name => {TYPE => 'varchar(64)', NOTNULL => 1}, linkinfooter => {TYPE => 'BOOLEAN', NOTNULL => 1}, query => {TYPE => 'MEDIUMTEXT', NOTNULL => 1}, + query_type => {TYPE => 'BOOLEAN', NOTNULL => 1}, ], INDEXES => [ namedqueries_userid_idx => {FIELDS => [qw(userid name)], |