class Entry { Person person Task task EntryType entryType Date date Integer duration String comments static hasMany = [persons: Person] static belongsTo = [EntryType, Task, Person] static constraints = { comments(maxSize:500) } }