From 46655626506d638cdb263760f6b211d05a67bdb5 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Thu, 4 Mar 1999 02:16:23 +0000 Subject: 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.) --- makeproducttable.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'makeproducttable.sh') 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 ); -- cgit v1.2.3-24-g4f1b