From c1a8053e98fa659ffda19fae799423c1762dbd10 Mon Sep 17 00:00:00 2001 From: "jocuri%softhome.net" <> Date: Sun, 16 Jan 2005 21:36:02 +0000 Subject: Patch for bug 103636: Support specifying a date on which a bug is expected to be resolved; patch by Alexandre Michetti Manduca , r=jouni, a=myk. --- checksetup.pl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'checksetup.pl') diff --git a/checksetup.pl b/checksetup.pl index bf193497a..932870dd2 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1774,6 +1774,7 @@ $table{bugs} = cclist_accessible tinyint not null default 1, estimated_time decimal(5,2) not null default 0, remaining_time decimal(5,2) not null default 0, + deadline datetime, alias varchar(20), index (assigned_to), @@ -2287,6 +2288,7 @@ AddFDef("cclist_accessible", "CC Accessible", 0); AddFDef("bug_group", "Group", 0); AddFDef("estimated_time", "Estimated Hours", 1); AddFDef("remaining_time", "Remaining Hours", 0); +AddFDef("deadline", "Deadline", 1); # Oops. Bug 163299 $dbh->do("DELETE FROM fielddefs WHERE name='cc_accessible'"); @@ -3354,6 +3356,7 @@ if (GetFieldDef("bugs","qacontact_accessible")) { AddField("longdescs", "work_time", "decimal(5,2) not null default 0"); AddField("bugs", "estimated_time", "decimal(5,2) not null default 0"); AddField("bugs", "remaining_time", "decimal(5,2) not null default 0"); +AddField("bugs", "deadline", "datetime"); # 2002-03-15 bbaetz@student.usyd.edu.au - bug 129466 # 2002-05-13 preed@sigkill.com - bug 129446 patch backported to the -- cgit v1.2.3-24-g4f1b