Files
mozo-backend/app/models/product_category.rb
T

13 lines
251 B
Ruby

class ProductCategory
include SimplyStored::Couch
property :name
property :position, type: Fixnum, default: 0
belongs_to :supplier
has_many :products
validates :position, numericality: true
validates :supplier_id, presence: true
end