rails/activerecord/test/models/item.rb
2016-08-06 19:37:57 +02:00

8 lines
138 B
Ruby

class AbstractItem < ActiveRecord::Base
self.abstract_class = true
has_one :tagging, as: :taggable
end
class Item < AbstractItem
end