13 lines
375 B
Ruby
13 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
|