aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/club.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/models/club.rb')
-rw-r--r--activerecord/test/models/club.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/activerecord/test/models/club.rb b/activerecord/test/models/club.rb
index 171445df3e..3ddb691dfb 100644
--- a/activerecord/test/models/club.rb
+++ b/activerecord/test/models/club.rb
@@ -2,5 +2,6 @@ class Club < ActiveRecord::Base
has_many :memberships
has_many :members, :through => :memberships
has_many :current_memberships
- has_many :sponsors
+ has_one :sponsor
+ has_one :sponsored_member, :through => :sponsor, :source => :sponsorable, :source_type => "Member"
end \ No newline at end of file