Ignore:
Timestamp:
Jan 20, 2009, 8:08:17 PM (15 years ago)
Author:
gavin
Message:

Add to BootStrap?, work on Domain classes update ERD to match, again.

File:
1 edited

Legend:

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

    r21 r25  
    11class EntryType {
    2     Entry entry
    32    String name
    43    String description = ""
    5     boolean isActive
     4    boolean isActive = true
    65
    7     static belongsTo = Entry
     6    static hasMany = [entries: Entry]
    87   
    98    static contstraints = {
    10         entry()
    11         name(blank:false)
    12         description()
    13         isActive()
    149    }
    1510
Note: See TracChangeset for help on using the changeset viewer.