mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
12 lines
247 B
Ruby
12 lines
247 B
Ruby
module Shop
|
|
class Collection < ActiveRecord::Base
|
|
has_many :products, :dependent => :nullify
|
|
end
|
|
|
|
class Product < ActiveRecord::Base
|
|
has_many :variants, :dependent => :delete_all
|
|
end
|
|
|
|
class Variant < ActiveRecord::Base
|
|
end
|
|
end
|