Displaying 1 result from an estimated 1 matches for "person_person_id".
2006 Mar 15
1
Through method problems with custom foreign_keys
....p
erson_person_id = 1)
Notice that "contacts.company_branch_id" does not exist, it should be
"contacts.com_branch_id"
Here are the models:
class Person < ActiveRecord::Base
set_primary_key "person_id"
has_many :contacts,
:foreign_key=>"person_person_id",
:class_name=>"Contact"
has_many :company_branches,
:through=>:contacts,
:foreign_key=>"com_branch_id"
end
class CompanyBranch < ActiveRecord::Base
set_primary_key "branch_id"
belongs_to :company,...