Model refactorings and further expansion of specs
[merb_mart.git] / app / models / mart / store / variation.rb
blob95856bd87b13edf1f1d149ba96dcdd0d7aa742e2
1 module Mart
2   module Store
3     class Variation < AbstractItem
4   
5       property :product_id, Fixnum  # foreign-key
6   
7       belongs_to :product
9     end
10   end
11 end