Skip to content

Instantly share code, notes, and snippets.

@arwineap
Last active June 19, 2017 23:28
Show Gist options
  • Save arwineap/afb15c4faabd49607f231d2f82d0ca5c to your computer and use it in GitHub Desktop.
Save arwineap/afb15c4faabd49607f231d2f82d0ca5c to your computer and use it in GitHub Desktop.
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