Skip to content

Instantly share code, notes, and snippets.

@mikeraimondi
Created June 15, 2013 04:10
Show Gist options
  • Save mikeraimondi/5786858 to your computer and use it in GitHub Desktop.
Save mikeraimondi/5786858 to your computer and use it in GitHub Desktop.
expressive association example
class User < ActiveRecord::Base
has_many :posts,
foreign_key: 'author_id',
inverse_of: :author
attr_accessible :name, :email
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment