Skip to content

Instantly share code, notes, and snippets.

@ccjr
Created March 6, 2010 23:28
Show Gist options
  • Save ccjr/324010 to your computer and use it in GitHub Desktop.
Save ccjr/324010 to your computer and use it in GitHub Desktop.
[Beginning Rails 3] Listing 5-8. :order option added to has_many
class User < ActiveRecord::Base
has_one :profile
has_many :articles, :order => 'published_at DESC'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment