Created
May 5, 2011 14:12
-
-
Save Shpigford/957102 to your computer and use it in GitHub Desktop.
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 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