Skip to content

Instantly share code, notes, and snippets.

Created December 21, 2014 12:14
Show Gist options
  • Save anonymous/45bfba3d8037aac23cdd to your computer and use it in GitHub Desktop.
Save anonymous/45bfba3d8037aac23cdd to your computer and use it in GitHub Desktop.
=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