2018-08-03 03:15:25 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-25 12:54:08 -04:00
|
|
|
module Ci
|
2019-03-28 09:17:42 -04:00
|
|
|
class BuildTraceSection < ApplicationRecord
|
2017-09-25 12:54:08 -04:00
|
|
|
extend Gitlab::Ci::Model
|
|
|
|
|
|
|
|
belongs_to :build, class_name: 'Ci::Build'
|
|
|
|
belongs_to :project
|
|
|
|
belongs_to :section_name, class_name: 'Ci::BuildTraceSectionName'
|
|
|
|
|
|
|
|
validates :section_name, :build, :project, presence: true, allow_blank: false
|
|
|
|
end
|
|
|
|
end
|