Updated models for DM 0.9.0:
[merb_mart.git] / app / models / order_shipping_weight.rb
blob1ebdbf7d4680a138dcf22f11eb6b312965402834
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::Resource
9   
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
16   
17 end