diff options
author | Jon Leighton <j@jonathanleighton.com> | 2010-12-23 14:19:08 +0000 |
---|---|---|
committer | Aaron Patterson <aaron.patterson@gmail.com> | 2010-12-23 15:19:18 -0800 |
commit | fb3a8c51b4028e8d122fdbb783d73d0ed37ca168 (patch) | |
tree | 6c951f1b78715f39223ffcd6f3f5137fd7db3003 /activerecord/test/models | |
parent | 1c07b84df95e932d50376c1d0a13585b2e2ef868 (diff) | |
download | rails-fb3a8c51b4028e8d122fdbb783d73d0ed37ca168.tar.gz rails-fb3a8c51b4028e8d122fdbb783d73d0ed37ca168.tar.bz2 rails-fb3a8c51b4028e8d122fdbb783d73d0ed37ca168.zip |
Raise an error for associations which try to go :through a polymorphic association [#6212 state:resolved]
Diffstat (limited to 'activerecord/test/models')
-rw-r--r-- | activerecord/test/models/tagging.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/test/models/tagging.rb b/activerecord/test/models/tagging.rb index a1fa1a9750..33ffc623d7 100644 --- a/activerecord/test/models/tagging.rb +++ b/activerecord/test/models/tagging.rb @@ -7,4 +7,5 @@ class Tagging < ActiveRecord::Base 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 :taggable, :polymorphic => true, :counter_cache => true -end
\ No newline at end of file + has_many :things, :through => :taggable +end |