Created
December 21, 2014 12:14
-
-
Save anonymous/45bfba3d8037aac23cdd 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
=begin | |
class User < AR::Base | |
has_many :challenges | |
end | |
class Challenge < AR::Base | |
belongs_to :user | |
belongs_to :category | |
has_many :participants, class_name: 'User', foreign_key: 'challenge_id' | |
#Challenge can have many participants | |
end | |
=end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment