2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2007-06-25 18:42:19 -04:00
|
|
|
class AbstractItem < ActiveRecord::Base
|
|
|
|
self.abstract_class = true
|
2016-08-06 13:37:57 -04:00
|
|
|
has_one :tagging, as: :taggable
|
2007-06-25 18:42:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
class Item < AbstractItem
|
|
|
|
end
|