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

module Ci
  class BuildTraceSection < ActiveRecord::Base
    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