Jesse Crockett wrote:
> Award.all(:joins => "INNER JOIN overall_rankings ON
> (overall_rankings.poem_id = awards.poem_id)") gets the wrong
> award.overall_ranking on heroku postgres
> 
> Poem
>   has_many :awards
>   has_one  :overall_ranking
> 
> Award
>   belongs_to :poem
>   has_one :overall_ranking, :foreign_key => :poem_id
> 
> OverallRanking
>   belongs_to :poem

# Solution

Award
  has_one :overall_ranking, :foreign_key => :poem_id, :primary_key => 
:poem_id

Award.all(:include => :overall_ranking)
-- 
Posted via http://www.ruby-forum.com/.

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to rubyonrails-t...@googlegroups.com.
To unsubscribe from this group, send email to 
rubyonrails-talk+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to