turniere-backend/app/models/bet.rb

8 lines
139 B
Ruby

# frozen_string_literal: true
class Bet < ApplicationRecord
belongs_to :user
belongs_to :match
belongs_to :team, optional: true
end