debian-mirror-gitlab/app/models/ml/candidate_metadata.rb

15 lines
464 B
Ruby
Raw Normal View History

2023-03-04 22:38:38 +05:30
# frozen_string_literal: true
module Ml
class CandidateMetadata < ApplicationRecord
validates :candidate, presence: true
validates :name,
length: { maximum: 250 },
presence: true,
uniqueness: { scope: :candidate, message: ->(candidate, _) { "'#{candidate.name}' already taken" } }
validates :value, length: { maximum: 5000 }, presence: true
belongs_to :candidate, class_name: 'Ml::Candidate'
end
end