aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/models/game.rb
blob: 0c33075b1294c0117568b3834676dbdf9bf1a033 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class Game < ActiveRecord::Base
  has_one :game_board
  belongs_to :game_owner
  belongs_to :game_collection
end