Ignore:
Timestamp:
Feb 9, 2010, 1:41:59 AM (14 years ago)
Author:
gav
Message:

Add comment attribute to Site and limit description to 75 char.
Update detailed views to suite.

File:
1 edited

Legend:

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

    r273 r332  
    33    String name
    44    String description = ""
     5    String comment = ""
    56    Boolean isActive = true
    67
     
    1314    static constraints = {
    1415        name(maxSize:50, unique:true, blank:false)
    15         description(maxSize:100)
     16        description(maxSize:75)
     17        comment(maxSize:500)
    1618        isActive()
    1719    }
Note: See TracChangeset for help on using the changeset viewer.