summaryrefslogtreecommitdiff
path: root/db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-10-20 08:43:02 +0000
committerGitLab Bot <gitlab-bot@gitlab.com>2021-10-20 08:43:02 +0000
commitd9ab72d6080f594d0b3cae15f14b3ef2c6c638cb (patch)
tree2341ef426af70ad1e289c38036737e04b0aa5007 /db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb
parentd6e514dd13db8947884cd58fe2a9c2a063400a9b (diff)
downloadgitlab-ce-d9ab72d6080f594d0b3cae15f14b3ef2c6c638cb.tar.gz
Add latest changes from gitlab-org/gitlab@14-4-stable-eev14.4.0-rc42
Diffstat (limited to 'db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb')
-rw-r--r--db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb19
1 files changed, 0 insertions, 19 deletions
diff --git a/db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb b/db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb
deleted file mode 100644
index 0405e23b465..00000000000
--- a/db/post_migrate/20191017180026_drop_ci_build_trace_sections_id.rb
+++ /dev/null
@@ -1,19 +0,0 @@
-# frozen_string_literal: true
-
-class DropCiBuildTraceSectionsId < ActiveRecord::Migration[5.2]
- DOWNTIME = false
-
- def up
- ##
- # This column has already been ignored since 12.4
- # See https://gitlab.com/gitlab-org/gitlab/issues/32569
- remove_column :ci_build_trace_sections, :id
- end
-
- def down
- ##
- # We don't backfill serial ids as it's not used in application code
- # and quite expensive process.
- add_column :ci_build_trace_sections, :id, :bigint
- end
-end