Created
June 15, 2013 03:54
-
-
Save mikeraimondi/5786823 to your computer and use it in GitHub Desktop.
expressive associations example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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