Changeset 333 for trunk/grails-app/domain
- Timestamp:
- Feb 9, 2010, 1:47:44 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Department.groovy
r268 r333 3 3 String name 4 4 String description = "" 5 String comment = "" 5 6 boolean isActive = true 6 7 … … 13 14 static constraints = { 14 15 name(maxSize:50, unique:true, blank:false) 15 description(maxSize:100) 16 description(maxSize:75) 17 comment(maxSize:500) 16 18 isActive() 17 19 }
Note: See TracChangeset
for help on using the changeset viewer.