debian-mirror-gitlab/app/models/ci/build_trace_section_name.rb

14 lines
375 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
module Ci
2019-07-07 11:18:12 +05:30
class BuildTraceSectionName < ApplicationRecord
2018-03-17 18:26:18 +05:30
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