class TaskModification { Person person TaskModificationType taskModificationType Task task Date date = new Date() String comment static belongsTo = [Person, TaskModificationType, Task] static constraints = { person() taskModificationType() task() date() comment() } static optionals = ["comment"] }