It seems I need to add a source too. If not Rails will look for likers / liker in likes.
has_many :likes has_many :hates has_many :likers, :through => :likes, :class_name => 'User', :source => 'user' has_many :haters, :through => :hates, :class_name => 'User', :source => 'user'
source share