source: trunk/src/grails-app/domain/TaskModification.groovy @ 93

Last change on this file since 93 was 93, checked in by gav, 15 years ago

Rename Modification and ModificationType? domains to TaskModification? and TaskModificationType? respectively. Re-generate controller and views. Update ERD. It's an evil but a necessary mouthful as we may want to track other modifications later.

File size: 378 bytes
Line 
1class TaskModification {
2    Person person
3    TaskModificationType taskModificationType
4    Task task
5    Date date = new Date()
6    String comment
7
8    static belongsTo = [Person, TaskModificationType, Task]
9
10    static constraints = {
11        person()
12        taskModificationType()
13        task()
14        date()
15        comment()
16    }
17
18    static optionals = ["comment"]
19}
Note: See TracBrowser for help on using the repository browser.