Skip to content

Instantly share code, notes, and snippets.

@Shpigford
Created May 5, 2011 14:12
Show Gist options
  • Save Shpigford/957102 to your computer and use it in GitHub Desktop.
Save Shpigford/957102 to your computer and use it in GitHub Desktop.
class Dog < ActiveRecord::Base
has_many :videos
has_many :photos
belongs_to :user
end
class Video < ActiveRecord::Base
has_many :dogs
belongs_to :user
end
class Photo < ActiveRecord::Base
has_many :dogs
belongs_to :user
end
class User < ActiveRecord::Base
has_many :dogs
has_many :videos
has_many :photo
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment