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.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/models/ci/build_trace_section_name.rb b/app/models/ci/build_trace_section_name.rb
new file mode 100644
index 00000000000..0fdcb1ea329
--- /dev/null
+++ b/app/models/ci/build_trace_section_name.rb
@@ -0,0 +1,11 @@
+module Ci
+ class BuildTraceSectionName < ActiveRecord::Base
+ 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