1 require 'dm-validations'
7 include DataMapper::Resource
8 include DataMapper::Validate
11 property :type, Class # single-table inheritance
12 property :order_id, Fixnum # foreign-key
13 property :customer_id, Fixnum # foreign-key
16 belongs_to :customer #, :accessor => :protected
23 year = Date.today.year