9 lines
266 B
Ruby
9 lines
266 B
Ruby
class TournamentBroadcastAssignment < ApplicationRecord
|
|
belongs_to :tournament
|
|
belongs_to :match
|
|
belongs_to :user
|
|
belongs_to :invitation, class_name: "TournamentBroadcastInvitation", optional: true
|
|
|
|
validates :user_id, uniqueness: { scope: :match_id }
|
|
end
|