diff options
author | kiko%async.com.br <> | 2003-09-18 21:17:15 +0200 |
---|---|---|
committer | kiko%async.com.br <> | 2003-09-18 21:17:15 +0200 |
commit | 0a3283b8769cb04d1683981cc2b318a14fa651a1 (patch) | |
tree | ef40130dc33998681ca43b88f64e469711d05d74 | |
parent | 0ca55bd31d48436feabd6ad474eb2900c937e768 (diff) | |
download | bugzilla-0a3283b8769cb04d1683981cc2b318a14fa651a1.tar.gz bugzilla-0a3283b8769cb04d1683981cc2b318a14fa651a1.tar.xz |
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
-rwxr-xr-x | checksetup.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checksetup.pl b/checksetup.pl index 2434872ca..15d5231fb 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, |