From: kiko%async.com.br <> Date: Thu, 18 Sep 2003 19:17:15 +0000 (+0000) Subject: Patch for bug 129315: incorrect column definition for bugs.delta_ts; X-Git-Tag: bugzilla-2.17.5~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0a3283b8769cb04d1683981cc2b318a14fa651a1;p=thirdparty%2Fbugzilla.git Patch for bug 129315: incorrect column definition for bugs.delta_ts; adds 'not null' constraint. p=jocuri@softhome.net (Vlad Dascalu) r=kiko a=justdave --- diff --git a/checksetup.pl b/checksetup.pl index 2434872cae..15d5231fb1 100755 --- a/checksetup.pl +++ b/checksetup.pl @@ -1551,7 +1551,7 @@ $table{bugs} = bug_severity enum($my_severities) not null, bug_status enum("UNCONFIRMED", "NEW", "ASSIGNED", "REOPENED", "RESOLVED", "VERIFIED", "CLOSED") not null, creation_ts datetime not null, - delta_ts timestamp, + delta_ts timestamp not null, short_desc mediumtext, op_sys enum($my_opsys) not null, priority enum($my_priorities) not null,