Files
mozo-backend/app/models/product_variant.rb
2019-01-31 10:44:06 -05:00

11 lines
247 B
Ruby

class ProductVariant
include SimplyStored::Couch
include ActiveModel::SerializerSupport
property :name
property :position, type: Integer, default: 0
belongs_to :product
belongs_to :supplier
view :by_product_id, key: :product_id
end