summaryrefslogtreecommitdiffstats
path: root/makebugtable.sh
diff options
context:
space:
mode:
authorterry%netscape.com <>1999-01-28 06:17:06 +0100
committerterry%netscape.com <>1999-01-28 06:17:06 +0100
commit903f703c12a4f310658ef0abeed6cd9f9e1fc97f (patch)
tree6515cd54357f378680bc193f60e3e9d9a1ea32a7 /makebugtable.sh
parenta7ac06a61d2e7b17c62cb31c7c09a60c34d0ab68 (diff)
downloadbugzilla-903f703c12a4f310658ef0abeed6cd9f9e1fc97f.tar.gz
bugzilla-903f703c12a4f310658ef0abeed6cd9f9e1fc97f.tar.xz
Added three new fields (which appear in the UI only if params are
turned on): target_milestone, qa_contact, and status_whiteboard.
Diffstat (limited to 'makebugtable.sh')
-rwxr-xr-xmakebugtable.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/makebugtable.sh b/makebugtable.sh
index e9ac8b140..f0be77687 100755
--- a/makebugtable.sh
+++ b/makebugtable.sh
@@ -46,7 +46,9 @@ version varchar(16) not null,
area enum("BUILD", "CODE", "CONTENT", "DOC", "PERFORMANCE", "TEST", "UI", "i18n", "l10n") not null,
component varchar(50) not null,
resolution enum("", "FIXED", "INVALID", "WONTFIX", "LATER", "REMIND", "DUPLICATE", "WORKSFORME") not null,
-
+target_milestone varchar(20) not null,
+qa_contact mediumint not null,
+status_whiteboard mediumtext not null,
index (assigned_to),
index (delta_ts),
@@ -59,7 +61,9 @@ index (reporter),
index (version),
index (area),
index (component),
-index (resolution)
+index (resolution),
+index (target_milestone),
+index (qa_contact)
);