Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Cannot Reproduce
-
Affects Version/s: None
-
Fix Version/s: None
-
Labels:None
-
Environment:grails 2.0 ,JDK 1.6 ,Lion,Mysql
Description
class {
Date start
static constraints = {
start nullable:true
}
}
use dbm-generate-gorm-changelog to generate xml like this:
<column name="start" type="timestamp"/>
when I deployed with mysql,there is `start` timestamp NOT NULL
currently I can use
<dropNotNullConstraint tableName="xxx" columnName="xxx"/>
to fixes