Skip to content

Instantly share code, notes, and snippets.

@rbarazi
Created March 8, 2010 21:56
Show Gist options
  • Save rbarazi/325809 to your computer and use it in GitHub Desktop.
Save rbarazi/325809 to your computer and use it in GitHub Desktop.
[Beginning Rails 3] Listing 5-18. The has_many :through declarations in app/models/user.rb
class User < ActiveRecord::Base
has_one :profile
has_many :articles, :order => 'published_at DESC, title ASC',
:dependent => :nullify
has_many :replies, :through => :articles, :source => :comments
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment