Created
March 24, 2009 22:08
-
-
Save gregbell/84393 to your computer and use it in GitHub Desktop.
This file contains 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 Player < ActiveRecord::Base | |
has_many :game_participations | |
has_many :games, :through => :game_participations | |
end | |
class Game < ActiveRecord::Base | |
has_many :game_participations | |
has_many :players, :through => :game_participations | |
end | |
# Table Schema | |
# game_id => integer | |
# player_id => integer | |
# points => integer | |
class GameParticipation < ActiveRecord::Base | |
belongs_to :game | |
belongs_to :player | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment