Skip to content

Instantly share code, notes, and snippets.

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