aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/sponsor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/models/sponsor.rb')
-rw-r--r--activerecord/test/models/sponsor.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/test/models/sponsor.rb b/activerecord/test/models/sponsor.rb
index 50c2c2d76c..7e5a1dc38b 100644
--- a/activerecord/test/models/sponsor.rb
+++ b/activerecord/test/models/sponsor.rb
@@ -1,4 +1,5 @@
class Sponsor < ActiveRecord::Base
belongs_to :sponsor_club, :class_name => "Club", :foreign_key => "club_id"
belongs_to :sponsorable, :polymorphic => true
-end \ No newline at end of file
+ belongs_to :thing, :polymorphic => true, :foreign_type => :sponsorable_type, :foreign_key => :sponsorable_id
+end