class Country{
String id
String code
Set<State> states
static embedded = ['states']
}
class State{
String id
String code
}
我正在尝试将唯一索引(或 gorm 约束验证)设置为国家代码 + 州代码
这些不起作用:
- 代码唯一:约束中为真
- 代码索引:true,indexAttributes:[唯一:true]
你能帮助我吗?