Suppose a simple Grails domain class:

class Account {
    String countryId;

    String userName;

    String password;

    static constraints = {
        ...???...
    }
}

It is required that user names are unique for a particular countryId, thus there must be a unique contraint on two columns. How to express this in the constraints definition?

link|improve this question

47% accept rate
2  
I was browsing the web and in particular stackoverflow without finding an answer. In the end, I found the solution in the Grails reference although all other Grails documentation examples only contaning the single column case. Didn't know that self-answering is not allowed within 8 hours – rainer198 Sep 28 '11 at 12:46
feedback

1 Answer

up vote 6 down vote accepted
userName(unique: ['countryId'])

You can include as many other properties in the array that make up the other properties that must be considered in the "unique" constraint on the username.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.