I found an answer, but it's very outdated (2009).
I would like to know how to sort the collection on a has_many relationship, preferably in the model.
Something like this:
class Article < ActiveRecord::Base
has_many :comments, :order => 'created_at DESC'
end