7 lines
107 B
Ruby
7 lines
107 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class Player < ApplicationRecord
|
||
|
belongs_to :user
|
||
|
belongs_to :table
|
||
|
end
|