puzzle-scoreboard/app/models/contestant.rb
sto 44507bb85c
Some checks are pending
CI / scan_ruby (push) Waiting to run
CI / scan_js (push) Waiting to run
CI / lint (push) Waiting to run
CI / test (push) Waiting to run
Add contestants
2025-03-20 09:19:39 +01:00

5 lines
97 B
Ruby

class Contestant < ApplicationRecord
belongs_to :contest
validates :name, presence: true
end