1 # These are the "variations" of an OrderShippingType
3 # They allow an admin to specify weight ranges and prices
4 # for an OrderShippingType.
6 class OrderShippingWeight
8 include DataMapper::Resource
10 # belongs_to :order_shipping_type
12 property :id, Fixnum, :serial => true
13 property :min_weight, Float, :default => 0.0, :nullable => false
14 property :max_weight, Float, :default => 0.0, :nullable => false
15 property :price, Float, :default => 0.0, :nullable => false