From eb2423b1c5e3090d09db856e7020f4dd24232674 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Wed, 24 Nov 2004 06:41:43 +0000 Subject: Patch for bug 180879: Implement privs for bug flags modification; 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 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index 710140191..c8af512ba 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1685,7 +1685,9 @@ $table{flagtypes} = is_requesteeble TINYINT NOT NULL DEFAULT 0 , is_multiplicable TINYINT NOT NULL DEFAULT 0 , - sortkey SMALLINT NOT NULL DEFAULT 0 + sortkey SMALLINT NOT NULL DEFAULT 0 , + grant_group_id MEDIUMINT NULL , + request_group_id MEDIUMINT NULL '; $table{flaginclusions} = @@ -4124,6 +4126,11 @@ if (GetFieldDef("group_group_map", "isbless")) { # login data source AddField("profiles", "extern_id", "varchar(64)"); +# 2004-11-20 - LpSolit@netscape.net - Bug 180879 +# Add grant and request groups for flags +AddField('flagtypes', 'grant_group_id', 'mediumint null'); +AddField('flagtypes', 'request_group_id', 'mediumint null'); + # If you had to change the --TABLE-- definition in any way, then add your # differential change code *** A B O V E *** this comment. # -- cgit v1.2.3-24-g4f1b