13 lines
204 B
Ruby
13 lines
204 B
Ruby
class ProductOrder
|
|
include SimplyStored::Couch
|
|
|
|
property :amount, type: Fixnum
|
|
property :price, type: Float
|
|
|
|
belongs_to :product
|
|
belongs_to :order
|
|
|
|
view :by_product_id, key: :product_id
|
|
|
|
end
|