aboutsummaryrefslogblamecommitdiffstats
path: root/activerecord/test/models/item.rb
blob: 8d079d56e6a0db6b3722664c0cfc45e8e07ac904 (plain) (tree)
1
2
3
4
5
6
7
8
9

                             

                                       
                                 



                         
# frozen_string_literal: true

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

class Item < AbstractItem
end