summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-08-10 16:34:16 +0200
committerbbaetz%student.usyd.edu.au <>2002-08-10 16:34:16 +0200
commit61890499431396f3209e0a135122a1af507364f6 (patch)
tree1093ecab3cc9ff51fcb809b026f1eeb4a4eaada9 /checksetup.pl
parent159185ae7e3b382a9acd850e7709834a5ebffb03 (diff)
downloadbugzilla-61890499431396f3209e0a135122a1af507364f6.tar.gz
bugzilla-61890499431396f3209e0a135122a1af507364f6.tar.xz
Bug 161865 - GetFieldID shouldn't INSERT into the fielddefs table
r=joel x2
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl10
1 files changed, 7 insertions, 3 deletions
diff --git a/checksetup.pl b/checksetup.pl
index ea4377fe9..74d008708 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -1746,6 +1746,9 @@ sub AddFDef ($$$) {
}
+# Note that all of these entries are unconditional, from when GetFieldID
+# used to create an entry if it wasn't found. New fielddef columns should
+# be created with their associated schema change.
AddFDef("bug_id", "Bug \#", 1);
AddFDef("short_desc", "Summary", 1);
AddFDef("product", "Product", 1);
@@ -1779,9 +1782,10 @@ AddFDef("(to_days(now()) - to_days(bugs.delta_ts))", "Days since bug changed",
0);
AddFDef("longdesc", "Comment", 0);
AddFDef("alias", "Alias", 0);
-
-
-
+AddFDef("everconfirmed", "Ever Confirmed", 0);
+AddFDef("groupset", "Groupset", 0);
+AddFDef("reporter_accessible", "Reporter Accessible", 0);
+AddFDef("cc_accessible", "CC Accessible", 0);
###########################################################################
# Detect changed local settings