debian-mirror-gitlab/app/models/ci/build_trace_section_name.rb
2019-07-07 11:18:12 +05:30

14 lines
375 B
Ruby

# frozen_string_literal: true
module Ci
class BuildTraceSectionName < ApplicationRecord
extend Gitlab::Ci::Model
belongs_to :project
has_many :trace_sections, class_name: 'Ci::BuildTraceSection', foreign_key: :section_name_id
validates :name, :project, presence: true, allow_blank: false
validates :name, uniqueness: { scope: :project_id }
end
end