Skip to content

Instantly share code, notes, and snippets.

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