Changeset 25 for trunk/src/grails-app/domain/EntryType.groovy
- Timestamp:
- Jan 20, 2009, 8:08:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/domain/EntryType.groovy
r21 r25 1 1 class EntryType { 2 Entry entry3 2 String name 4 3 String description = "" 5 boolean isActive 4 boolean isActive = true 6 5 7 static belongsTo = Entry6 static hasMany = [entries: Entry] 8 7 9 8 static contstraints = { 10 entry()11 name(blank:false)12 description()13 isActive()14 9 } 15 10
Note: See TracChangeset
for help on using the changeset viewer.