class Chili < ActiveRecord::Base
has_many :beans
end
class Bean < ActiveRecord::Base; end
class Pinto < Bean; end
Now, let's say you have one chili record that's associated with one pinto (it's a sad chili). If you do this
>> mychili.beans
= []
Where the beans at?!