Created
May 22, 2013 03:18
-
-
Save mikeraimondi/5625024 to your computer and use it in GitHub Desktop.
Rails has_many association
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 CrazyCatLady < ActiveRecord::Base | |
has_many :cats | |
end | |
class Cat < ActiveRecord::Base | |
belongs_to :crazy_cat_lady | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment