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

  has_many :tagged_posts, :through => :taggings, :source => :taggable, :source_type => 'Post'
end