class ProductImage < ActiveRecord::Base

  attr_accessible :title, :uri, :uri_cache, :product_id

  belongs_to :product

  mount_uploader :uri, ProductImageUploader

  validates_presence_of :uri
  #validates_presence_of :product_id

end
