2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2010-03-30 21:33:04 -04:00
|
|
|
module Shop
|
|
|
|
class Collection < ActiveRecord::Base
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :products, dependent: :nullify
|
2010-03-30 21:33:04 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Product < ActiveRecord::Base
|
2016-08-06 13:37:57 -04:00
|
|
|
has_many :variants, dependent: :delete_all
|
2014-01-14 08:23:45 -05:00
|
|
|
belongs_to :type
|
|
|
|
|
|
|
|
class Type < ActiveRecord::Base
|
|
|
|
has_many :products
|
|
|
|
end
|
2010-03-30 21:33:04 -04:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-03-30 21:33:04 -04:00
|
|
|
class Variant < ActiveRecord::Base
|
|
|
|
end
|
|
|
|
end
|