8 lines
219 B
Ruby
8 lines
219 B
Ruby
class Table < ActiveRecord::Base
|
|
#TODO has_many :moderators
|
|
has_many :seats
|
|
has_many :users, through: :seats
|
|
has_many :games
|
|
has_one :current_game, :class_name => "Game", :primary_key => "current_game_id"
|
|
end
|