Ignore:
Timestamp:
Mar 2, 2010, 4:34:12 PM (14 years ago)
Author:
gav
Message:

Add comment property to InventoryItem domain class and views.

File:
1 edited

Legend:

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

    r416 r422  
    88    String name
    99    String description = ""
     10    String comment = ""
    1011    String manufacturersPartNumber
    1112    BigDecimal estimatedUnitPriceAmount
     
    3536        picture(nullable:true)
    3637        name(unique:true, blank:false, maxSize:50)
    37         description()
     38        description(maxSize:255)
     39        comment(maxSize:500)
    3840        unitsInStock(min:0)
    3941        unitOfMeasure()
Note: See TracChangeset for help on using the changeset viewer.