aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models
diff options
context:
space:
mode:
authorBrad Greenlee <brad@wesabe.com>2008-06-02 22:04:46 -0700
committerMichael Koziarski <michael@koziarski.com>2008-07-06 20:25:10 +0200
commitafa0c7f728a8896c9ee9d932033e08a4c99dfd50 (patch)
tree6fd8642f524facf4d1d2584c21ce7b8d30b9d424 /activerecord/test/models
parent3351d2997017465047b2c3dc63dc31e2362368af (diff)
downloadrails-afa0c7f728a8896c9ee9d932033e08a4c99dfd50.tar.gz
rails-afa0c7f728a8896c9ee9d932033e08a4c99dfd50.tar.bz2
rails-afa0c7f728a8896c9ee9d932033e08a4c99dfd50.zip
Add support for :primary_key option to has_one as well as has_many so that a key other than the default primary key can be used for the association
Signed-off-by: Michael Koziarski <michael@koziarski.com>
Diffstat (limited to 'activerecord/test/models')
-rwxr-xr-xactiverecord/test/models/company.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/activerecord/test/models/company.rb b/activerecord/test/models/company.rb
index c45a21b6a2..e6aa810146 100755
--- a/activerecord/test/models/company.rb
+++ b/activerecord/test/models/company.rb
@@ -53,6 +53,7 @@ class Firm < Company
has_one :unvalidated_account, :foreign_key => "firm_id", :class_name => 'Account', :validate => false
has_one :account_with_select, :foreign_key => "firm_id", :select => "id, firm_id", :class_name=>'Account'
has_one :readonly_account, :foreign_key => "firm_id", :class_name => "Account", :readonly => true
+ has_one :account_using_primary_key, :primary_key => "firm_id", :class_name => "Account"
end
class DependentFirm < Company