summaryrefslogtreecommitdiffstats
path: root/makeproducttable.sh
diff options
context:
space:
mode:
authorterry%netscape.com <>1999-03-04 03:16:23 +0100
committerterry%netscape.com <>1999-03-04 03:16:23 +0100
commit46655626506d638cdb263760f6b211d05a67bdb5 (patch)
tree62064930753331d0b359120fce3b5f75aa709520 /makeproducttable.sh
parentca5f816469362ee2364391979aec6c35cd246b3e (diff)
downloadbugzilla-46655626506d638cdb263760f6b211d05a67bdb5.tar.gz
bugzilla-46655626506d638cdb263760f6b211d05a67bdb5.tar.xz
Added a "disallownew" field to the products table. If non-zero, then
don't let people file new bugs against this product. (This is for when a product is retired, but you want to keep the bug reports around for posterity.)
Diffstat (limited to 'makeproducttable.sh')
-rwxr-xr-xmakeproducttable.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/makeproducttable.sh b/makeproducttable.sh
index e9d8fc244..9d1887251 100755
--- a/makeproducttable.sh
+++ b/makeproducttable.sh
@@ -30,7 +30,8 @@ use bugs;
create table products (
product tinytext,
description mediumtext,
-milestoneurl tinytext not null
+milestoneurl tinytext not null,
+disallownew tinyint not null
);