Changeset 93 for trunk/src/grails-app/domain/TaskModification.groovy
- Timestamp:
- Mar 29, 2009, 11:56:11 PM (16 years ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/domain/TaskModification.groovy
r92 r93 1 class Modification {1 class TaskModification { 2 2 Person person 3 ModificationType modificationType3 TaskModificationType taskModificationType 4 4 Task task 5 5 Date date = new Date() 6 6 String comment 7 7 8 static belongsTo = [Person, ModificationType, Task]8 static belongsTo = [Person, TaskModificationType, Task] 9 9 10 10 static constraints = { 11 11 person() 12 modificationType()12 taskModificationType() 13 13 task() 14 14 date()
Note: See TracChangeset
for help on using the changeset viewer.