Cleaned up properties, many-to-one associations
[merb_mart.git] / app / models / product_image.rb
blobb479364ef83e6813d4a43b3324ad1b711195edb3
1 class ProductImage
2   
3   include DataMapper::Resource
4   
5   property :product_id, Fixnum  # foreign-key
6   property :image_id,   Fixnum  # foreign-key
7   property :rank,       Fixnum
9   many_to_one :product
10   many_to_one :image
12 end