在我的 Grails 域类中,我想设置保留在数据库中的默认值。我使用mysql作为数据库。我试图这样做:
class A {
long someValue = 1
long someOtherValue
boolean someBool = true
boolean someOtherBool
static mapping = {
someOtherValue defaultValue: 1
someOtherBool defaultValue: true
}
}
但没有任何效果。数据库中没有设置默认值。我必须更改什么才能正确设置默认值?