summaryrefslogtreecommitdiff
path: root/app/models/ci/build_trace_section_name.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/models/ci/build_trace_section_name.rb')
-rw-r--r--app/models/ci/build_trace_section_name.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/app/models/ci/build_trace_section_name.rb b/app/models/ci/build_trace_section_name.rb
deleted file mode 100644
index c065cfea14e..00000000000
--- a/app/models/ci/build_trace_section_name.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-# frozen_string_literal: true
-
-module Ci
- class BuildTraceSectionName < ApplicationRecord
- 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