From 44ef59f40baaa1b776248727e23452b25d69fa1d Mon Sep 17 00:00:00 2001 From: Mikhail Dieterle Date: Fri, 23 Mar 2012 18:30:16 +0800 Subject: :foreign_key option should be on has_many side of association --- guides/source/association_basics.textile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'guides/source/association_basics.textile') diff --git a/guides/source/association_basics.textile b/guides/source/association_basics.textile index 493b7c30be..8ddc56bef1 100644 --- a/guides/source/association_basics.textile +++ b/guides/source/association_basics.textile @@ -342,9 +342,9 @@ In designing a data model, you will sometimes find a model that should have a re class Employee < ActiveRecord::Base - has_many :subordinates, :class_name => "Employee" - belongs_to :manager, :class_name => "Employee", + has_many :subordinates, :class_name => "Employee", :foreign_key => "manager_id" + belongs_to :manager, :class_name => "Employee" end -- cgit v1.2.3