Changeset 722 for trunk/grails-app/domain
- Timestamp:
- Nov 25, 2010, 12:08:12 PM (14 years ago)
- Location:
- trunk/grails-app/domain
- Files:
-
- 2 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Address.groovy
r397 r722 3 3 AddressType addressType 4 4 5 Manufacturer manufacturer6 5 Supplier supplier 7 6 Person person … … 17 16 // hasMany = [] 18 17 19 static belongsTo = [ Manufacturer,Supplier, Person, Site]18 static belongsTo = [Supplier, Person, Site] 20 19 21 20 static constraints = { … … 26 25 postCode(blank:false,maxSize:50) 27 26 country(blank:false,maxSize:50) 28 manufacturer(nullable:true)29 27 supplier(nullable:true) 30 28 person(nullable:true) -
trunk/grails-app/domain/Contact.groovy
r402 r722 3 3 ContactType contactType 4 4 5 Manufacturer manufacturer6 5 Supplier supplier 7 6 Person person … … 12 11 // hasMany = [] 13 12 14 static belongsTo = [ Manufacturer,Supplier, Person, Site]13 static belongsTo = [Supplier, Person, Site] 15 14 16 15 static constraints = { 17 16 value(maxSize:50) 18 17 19 manufacturer(nullable:true)20 18 supplier(nullable:true) 21 19 person(nullable:true)
Note: See TracChangeset
for help on using the changeset viewer.