5 lines
97 B
Ruby
5 lines
97 B
Ruby
class Contestant < ApplicationRecord
|
|
belongs_to :contest
|
|
validates :name, presence: true
|
|
end
|