turniere-backend/app/models/team.rb

8 lines
136 B
Ruby

# frozen_string_literal: true
class Team < ApplicationRecord
belongs_to :tournament
has_one :group_score, dependent: :destroy
end