class ProductDocument < ActiveRecord::Base

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

  belongs_to :product

  mount_uploader :uri, ProductDocumentUploader

  validates_presence_of :uri
  validates_presence_of :title
  #validates_presence_of :product_id

end
