Ignore:
Timestamp:
Jan 26, 2009, 5:26:11 AM (15 years ago)
Author:
gav
Message:

Adjusted constraints and regen-all for Person/Group/Type? and Task/Group?.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/grails-app/domain/TaskGroup.groovy

    r25 r35  
    11class TaskGroup {
    22    String name
    3     String description
     3    String description = ""
    44    boolean isActive = true
    55
     
    77
    88    static constraints = {
    9         name(blank:false)
    10         description(blank:false)
     9        name(maxSize:50,unique:true,blank:false)
     10        description(maxSize:100)
    1111    }
    1212
Note: See TracChangeset for help on using the changeset viewer.