mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
13 lines
247 B
Ruby
13 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
|