source: trunk/src/grails-app/domain/TaskModificationType.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: 252 bytes
Line 
1class TaskModificationType {
2    String name
3    String description = ""
4    boolean isActive = true
5
6    static hasMany = [taskModifications : TaskModification]
7
8    static constraints = {
9    }
10
11    String toString() {
12        "${this.name}"
13    }
14}
Note: See TracBrowser for help on using the repository browser.