product.rb 239 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 class Product < ActiveRecord::Base belongs_to :enterprise belongs_to :product_category validates_presence_of :name validates_uniqueness_of :name, :scope => :enterprise_id validates_numericality_of :price, :allow_nil => true end