Last active
June 19, 2017 23:28
-
-
Save arwineap/afb15c4faabd49607f231d2f82d0ca5c 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 Game < ActiveRecord::Base | |
belongs_to :player | |
has_one :result | |
end | |
class Result < ActiveRecord::Base | |
belongs_to :game | |
end | |
class Player < ActiveRecord::Base | |
has_many :games | |
has_many :results through: :games | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment