10 lines
132 B
Ruby
10 lines
132 B
Ruby
class ProductOrder
|
|
include SimplyStored::Couch
|
|
|
|
property :amount, type: Fixnum
|
|
|
|
belongs_to :product
|
|
belongs_to :order
|
|
|
|
end
|