Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20210809194250_rename_tables_ci_build_trace_section.rb')
-rw-r--r--db/migrate/20210809194250_rename_tables_ci_build_trace_section.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/db/migrate/20210809194250_rename_tables_ci_build_trace_section.rb b/db/migrate/20210809194250_rename_tables_ci_build_trace_section.rb
deleted file mode 100644
index 76308e2ea8e..00000000000
--- a/db/migrate/20210809194250_rename_tables_ci_build_trace_section.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-# frozen_string_literal: true
-
-class RenameTablesCiBuildTraceSection < ActiveRecord::Migration[6.1]
- DOWNTIME = false
-
- def change
- # Shorten deprecated to dep to avoid 'Index name..too long'
- rename_table(:ci_build_trace_sections, :dep_ci_build_trace_sections)
- rename_table(:ci_build_trace_section_names, :dep_ci_build_trace_section_names)
- end
-end