From 383e47ca9ec03a821519474555408c6e78152a7c Mon Sep 17 00:00:00 2001 From: "lpsolit%gmail.com" <> Date: Wed, 26 Oct 2005 00:55:02 +0000 Subject: Bug 313020: Implement the ability to add individual bugs to saved searches - Patch by Frédéric Buclin r=joel a=justdave MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- checksetup.pl | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index e3c5a4af5..d04a07b7c 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -4038,6 +4038,10 @@ if ($dbh->bz_column_info("series", "public")) { $dbh->bz_add_column('attachments', 'isurl', {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 0}); +# 2005-10-21 LpSolit@gmail.com - Bug 313020 +$dbh->bz_add_column('namedqueries', 'query_type', + {TYPE => 'BOOLEAN', NOTNULL => 1, DEFAULT => 0}); + # If you had to change the --TABLE-- definition in any way, then add your # differential change code *** A B O V E *** this comment. # @@ -4180,6 +4184,9 @@ add_setting ("post_bug_submit_action", {"next_bug" => 1, # 2005-06-29 wurblzap@gmail.com -- Bug 257767 add_setting ('csv_colsepchar', {',' => 1, ';' => 2 }, ',' ); +# 2005-10-21 LpSolit@gmail.com -- Bug 313020 +add_setting('per_bug_queries', {'on' => 1, 'off' => 2}, 'on'); + ########################################################################### # Create Administrator --ADMIN-- ########################################################################### -- cgit v1.2.3-24-g4f1b