831be98f9a
89c79b8b95
d22e522179
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