Updating to reflect changes in DM 0.9.1
[merb_mart.git] / app / models / mart / store / product.rb
blob240b0f9cf2971c51ae7e5304e2e938c91b9a9281
1 module Mart
2   module Store
3     class Product < AbstractItem
5       #has n, {:images => :product_images},
6       #  :class_name => 'Mart::Store::ProductImage'#,
7         #:order => :rank.desc
9       has n, :variations, :order => [:name.asc]
11       #many_to_many :related_products,
12       #  :class_name => 'Product' #,
13         #:join_table => 'related_products',
14         #:association_foreign_key => 'related_id',
15         #:foreign_key => 'product_id'
17       #many_to_many :tags
19     end
20   end
21 end