aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/shop.rb
blob: 81414227ea832173f72fd95af896948c9688e849 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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