aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/item.rb
blob: c2571dd7fbceacce92df2cd39135c6277e2c445e (plain) (tree)
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