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, 11 insertions, 0 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
new file mode 100644
index 00000000000..76308e2ea8e
--- /dev/null
+++ b/db/migrate/20210809194250_rename_tables_ci_build_trace_section.rb
@@ -0,0 +1,11 @@
+# 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