turniere-backend/app/models/stage.rb

8 lines
173 B
Ruby

# frozen_string_literal: true
class Stage < ApplicationRecord
belongs_to :tournament
has_many :matches, dependent: :destroy
has_many :groups, dependent: :destroy
end