turniere-backend/app/models/match_score.rb

9 lines
141 B
Ruby

# frozen_string_literal: true
class MatchScore < ApplicationRecord
belongs_to :match
belongs_to :team
delegate :owner, to: :team
end