diff options
author | Jon Leighton <j@jonathanleighton.com> | 2010-10-12 17:32:52 +0100 |
---|---|---|
committer | Jon Leighton <j@jonathanleighton.com> | 2010-10-12 17:32:52 +0100 |
commit | 56064aa4b014233ae54413628679b7f7fa5d6f77 (patch) | |
tree | d4b5c88de4ad32ab23cebff39c1518e38cc46480 /activerecord/test/models | |
parent | dc39aceb94fa810f8d7e263c0293f325fbf9a109 (diff) | |
download | rails-56064aa4b014233ae54413628679b7f7fa5d6f77.tar.gz rails-56064aa4b014233ae54413628679b7f7fa5d6f77.tar.bz2 rails-56064aa4b014233ae54413628679b7f7fa5d6f77.zip |
Add test_has_many_through_has_one_through_with_has_many_source_reflection
Diffstat (limited to 'activerecord/test/models')
-rw-r--r-- | activerecord/test/models/member.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/models/member.rb b/activerecord/test/models/member.rb index 1113ef3e28..44c10cc4a4 100644 --- a/activerecord/test/models/member.rb +++ b/activerecord/test/models/member.rb @@ -17,4 +17,5 @@ class Member < ActiveRecord::Base has_one :nested_sponsor, :through => :sponsor_club, :source => :sponsor has_many :organization_member_details, :through => :member_detail + has_many :organization_member_details_2, :through => :organization, :source => :member_details end |