假设一个简单的 Grails 域类:
class Account {
String countryId;
String userName;
String password;
static constraints = {
...???...
}
}
要求用户名对于特定countryId是唯一的,因此两列必须有唯一的约束。如何在约束定义中表达这一点?
假设一个简单的 Grails 域类:
class Account {
String countryId;
String userName;
String password;
static constraints = {
...???...
}
}
要求用户名对于特定countryId是唯一的,因此两列必须有唯一的约束。如何在约束定义中表达这一点?