2 include DataMapper::Resource
4 property :id, Integer, :serial => true
5 property :type, Class # single-table inheritance
6 property :code, String, :length => 20, :nullable => false
7 property :name, String, :length => 100, :nullable => false
8 property :description, DM::Text
9 property :price, BigDecimal, :default => 0.0, :nullable => false
10 property :date_available, DateTime, :nullable => false
11 property :quantity, Integer, :default => 0, :nullable => false
12 property :is_discontinued, Boolean
16 has n, :product_images
18 alias_method :discontinued?, :is_discontinued