11 lines
192 B
Ruby
11 lines
192 B
Ruby
class Supplier
|
|
include SimplyStored::Couch
|
|
|
|
property :name
|
|
has_many :lists
|
|
has_many :orders, through: :lists
|
|
has_many :products
|
|
has_many :product_categories
|
|
has_many :tables
|
|
end
|