Create note on discontinued development
[merb_mart.git] / app / models / upload / image / product_image.rb
blob65e52e613438801dcb14510925e0a3ce19ac1004
1 class ProductImage < Image
3   property :product_id, Integer  # foreign-key
5   belongs_to :product
7   after :resize, :generate_thumbnail
9   validates_present :product
11   def generate_thumbnail; end
12 end