Changeset 21 for trunk/src/grails-app/domain/Modification.groovy
- Timestamp:
- Jan 19, 2009, 8:31:46 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/domain/Modification.groovy
r18 r21 1 1 class Modification { 2 2 Person person 3 TypeOfModification typeOfModification3 ModificationType modificationType 4 4 Task task 5 5 Date dateTime 6 6 String comments 7 7 8 static belongsTo = [Person, TypeOfModification, Task]8 static belongsTo = [Person, ModificationType, Task] 9 9 10 10 static constraints = { 11 11 person() 12 typeOfModification()12 modificationType() 13 13 task() 14 14 dateTime()
Note: See TracChangeset
for help on using the changeset viewer.