aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/fixtures/tag.rb
blob: c12ec0c188568968c271e4f8cbb78e20e719e3e6 (plain) (blame)
1
2
3
4
5
class Tag < ActiveRecord::Base
  has_many :taggings
  has_many :taggables, :through => :taggings
  has_one  :tagging
end