source: trunk/grails-app/domain/Site.groovy @ 273

Last change on this file since 273 was 273, checked in by gav, 14 years ago

Correct site-inventoryStores relationship and generate-all.
Copy section views over sectionDetailed.

File size: 495 bytes
Line 
1class Site {
2
3    String name
4    String description = ""
5    Boolean isActive = true
6
7    static hasMany = [sections: Section,
8                                siteExtendedAttributes: SiteExtendedAttribute,
9                                inventoryStores: InventoryStore]
10
11//     static belongsTo = []
12
13    static constraints = {
14        name(maxSize:50, unique:true, blank:false)
15        description(maxSize:100)
16        isActive()
17    }
18
19    String toString() {
20        "${this.name}"
21    }
22}
Note: See TracBrowser for help on using the repository browser.