Displaying 1 result from an estimated 1 matches for "assigned_manager".
2006 Feb 09
2
Crazy @55 Inheritance
...onship up seeing
that :has_one, :belongs_to and :has_many don''t
allow you to specify a :join_table ?
I can get the "has_one" part of the equation working using:
belongs_to :manager,
:class_name => "Client",
:foreign_key => "assigned_manager"
... where "assigned_manager" is just a field with the "people" table... but
I''m at a loss on how to specify the :has_many.
My assumption would be that I have to use HABTM in order to get the join
table recognized... but just need to ensure I''m not assig...