Changeset 373 for trunk/grails-app
- Timestamp:
- Feb 18, 2010, 12:54:55 AM (15 years ago)
- Location:
- trunk/grails-app/domain
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/EntryType.groovy
r146 r373 6 6 static hasMany = [entries: Entry] 7 7 8 static con tstraints = {8 static constraints = { 9 9 name(maxSize:50,unique:true,blank:false) 10 10 description(maxSize:100) -
trunk/grails-app/domain/InventoryMovementType.groovy
r177 r373 7 7 static hasMany = [inventoryMovements: InventoryMovement] 8 8 9 static con tstraints = {9 static constraints = { 10 10 name(maxSize:50,unique:true,blank:false) 11 11 description(maxSize:100) -
trunk/grails-app/domain/InventoryType.groovy
r116 r373 5 5 6 6 static hasMany = [inventoryItems: InventoryItem] 7 8 static con tstraints = {7 8 static constraints = { 9 9 name(maxSize:50,unique:true,blank:false) 10 10 description(maxSize:100) -
trunk/grails-app/domain/Manufacturer.groovy
r116 r373 8 8 9 9 static belongsTo = [InventoryItem] 10 11 static con tstraints = {10 11 static constraints = { 12 12 name(maxSize:50,unique:true,blank:false) 13 13 description(maxSize:100) -
trunk/grails-app/domain/ManufacturerType.groovy
r116 r373 5 5 6 6 static hasMany = [manufacturers: Manufacturer] 7 8 static con tstraints = {7 8 static constraints = { 9 9 name(maxSize:50,unique:true,blank:false) 10 10 description(maxSize:100) -
trunk/grails-app/domain/Supplier.groovy
r116 r373 6 6 7 7 static hasMany = [inventoryItems: InventoryItem] 8 8 9 9 static belongsTo = [InventoryItem] 10 10 11 static con tstraints = {11 static constraints = { 12 12 name(maxSize:50,unique:true,blank:false) 13 13 description(maxSize:100) -
trunk/grails-app/domain/SupplierType.groovy
r116 r373 6 6 static hasMany = [suppliers: Supplier] 7 7 8 static con tstraints = {8 static constraints = { 9 9 name(maxSize:50,unique:true,blank:false) 10 10 description(maxSize:100) -
trunk/grails-app/domain/UnitOfMeasure.groovy
r116 r373 6 6 static hasMany = [inventoryItems: InventoryItem] 7 7 8 static con tstraints = {8 static constraints = { 9 9 name(maxSize:50,unique:true,blank:false) 10 10 description(maxSize:100)
Note: See TracChangeset
for help on using the changeset viewer.