Updated Rake tasks and test, spec to reflect change in how Merb environments
[merb_mart.git] / app / models / order_shipping_weight.rb
blob61f7a6d0d95de9073dc7b05c87bcb1a4af7786ca
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
7   
8   include DataMapper::Persistable
9   
10   belongs_to :order_shipping_type
11   
12   property :min_weight, :float, :default => 0.0, :nullable => false
13   property :max_weight, :float, :default => 0.0, :nullable => false
14   property :price,      :float, :default => 0.0, :nullable => false
15   
16 end