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

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

File:
1 edited

Legend:

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

    r276 r330  
    55    String name
    66    String description = ""
     7    String comment = ""
    78    boolean isActive = true
    89
     
    1617    static constraints = {
    1718        name(maxSize:50, blank:false)
    18         description(maxSize:100)
     19        description(maxSize:75)
     20        comment(maxSize:500)
    1921        isActive()
    2022        parentItem(nullable:true)
Note: See TracChangeset for help on using the changeset viewer.