Hello,
Imagine that I have the two following models :
class A < ActiveRecord::Base
belongs_to :b, :foreign => :fkey
end
class B < ActiveRecord::Base
end
Is it possible to retrieve both classes A and B and that column fkey
is pointing to table B ? In other words, if I give :a and :fkey, how
to obtain the class A and the fact that ‘fkey’ is a foreign key
pointing to table ‘B’ ?
I am almost sure that AR can do that, but this is not well-documented,
and source-code is a bit obsucated…
Thank you in advance,
Pierre L.