Displaying 1 result from an estimated 1 matches for "support_merchants".
2006 Mar 31
3
Complex Through Statement
...be the
enrollment contact for one merchant and the support contact for another.
Therefore, my Employee class looks like this:
class Employee < ActiveRecord::Base
has_many :enrollment_merchants, :class_name => "Merchant",
:foreign_key => :enrollment_employee_id
has_many :support_merchants, :class_name => "Merchant", :foreign_key
=> :support_employee_id
end
And my Merchant class looks like this:
class Merchant < ActiveRecord::Base
belongs_to :enrollment_employee, :class_name => "Employee",
:foreign_key => "enrollment_employee_id"...