Create note on discontinued development
[merb_mart.git] / app / models / shipping / weight.rb
blob960f7b8495b4408ba9091cb3a67a4b505f1ca788
1 require "bigdecimal"
3 module Mart
4   module Shipping
5     class Weight
7       include DataMapper::Resource
9       property :id,         Integer,     :serial => true
10       property :min_weight, Float,      :default => 0.0, :nullable => false
11       property :max_weight, Float,      :default => 0.0, :nullable => false
12       property :price,      BigDecimal, :default => 0.0, :nullable => false
13       property :order_shipping_type_id, Integer  # foreign-key
15       belongs_to :type
17     end
18   end
19 end