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 BuildTraceSection < ApplicationRecord
|
2018-03-17 18:26:18 +05:30
|
|
|
extend Gitlab::Ci::Model
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
# Only remove > 2019-11-22 and > 12.5
|
|
|
|
self.ignored_columns += %i[id]
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
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
|