aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/tagging.rb
blob: 231d2b589093f7d6c54b857ed9e315e619d334a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
# test that attr_readonly isn't called on the :taggable polymorphic association
module Taggable
end

class Tagging < ActiveRecord::Base
  belongs_to :tag, :include => :tagging
  belongs_to :super_tag,   :class_name => 'Tag', :foreign_key => 'super_tag_id'
  belongs_to :invalid_tag, :class_name => 'Tag', :foreign_key => 'tag_id'
  belongs_to :interpolated_tag, :class_name => 'Tag', :foreign_key => :tag_id, :conditions => proc { "1 = #{1}" }
  belongs_to :taggable, :polymorphic => true, :counter_cache => true
  has_many :things, :through => :taggable
end