summaryrefslogtreecommitdiff
path: root/app/models/ci/build_trace_section.rb
blob: 7fe6b753da17d6cea6ad9724e93dad21a0a988eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

module Ci
  class BuildTraceSection < ApplicationRecord
    extend Gitlab::Ci::Model

    # Only remove > 2019-11-22 and > 12.5
    self.ignored_columns += %i[id]

    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