Commit 0a3283b8 authored by kiko%async.com.br's avatar kiko%async.com.br

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
parent 0ca55bd3
......@@ -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,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment