This message was deleted.
# questions
s
This message was deleted.
a
This is my domain class:
package tech.andean
Copy code
class UrbanAuth {
    String id
    String huGroup
    String name
    String code
Copy code
static belongsTo = [type:UrbanAuthType,ubigeus:Ubigeus]
    static hasMany = [roads:Road]
Copy code
static constraints = {
        huGroup nullable:true,blank:true
    }
Copy code
static mapping = {
        id generator:'assigned'
    }
}