11 lines
163 B
Ruby
11 lines
163 B
Ruby
class ProductOrder
|
|
include SimplyStored::Couch
|
|
|
|
property :amount, type: Fixnum
|
|
property :price, type: Float
|
|
|
|
belongs_to :product
|
|
belongs_to :order
|
|
|
|
end
|