aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/item.rb
blob: 336fb1769a5e52d375f61c2c67ddd8aac1206582 (plain) (blame)
1
2
3
4
5
6
7
class AbstractItem < ActiveRecord::Base
  self.abstract_class = true
  has_one :tagging, as: :taggable
end

class Item < AbstractItem
end