Skip to content

Instantly share code, notes, and snippets.

@mikeraimondi
Created May 22, 2013 03:18
Show Gist options
  • Save mikeraimondi/5625024 to your computer and use it in GitHub Desktop.
Save mikeraimondi/5625024 to your computer and use it in GitHub Desktop.
Rails has_many association
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