summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210427045711_backfill_ci_build_trace_chunks_for_bigint_conversion.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210427045711_backfill_ci_build_trace_chunks_for_bigint_conversion.rb')
-rw-r--r--db/post_migrate/20210427045711_backfill_ci_build_trace_chunks_for_bigint_conversion.rb28
1 files changed, 0 insertions, 28 deletions
diff --git a/db/post_migrate/20210427045711_backfill_ci_build_trace_chunks_for_bigint_conversion.rb b/db/post_migrate/20210427045711_backfill_ci_build_trace_chunks_for_bigint_conversion.rb
deleted file mode 100644
index 7e11d38868b..00000000000
--- a/db/post_migrate/20210427045711_backfill_ci_build_trace_chunks_for_bigint_conversion.rb
+++ /dev/null
@@ -1,28 +0,0 @@
-# frozen_string_literal: true
-
-class BackfillCiBuildTraceChunksForBigintConversion < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- disable_ddl_transaction!
-
- TABLE = :ci_build_trace_chunks
- COLUMNS = %i(build_id)
-
- def up
- return unless should_run?
-
- backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
- end
-
- def down
- return unless should_run?
-
- revert_backfill_conversion_of_integer_to_bigint(TABLE, COLUMNS)
- end
-
- private
-
- def should_run?
- Gitlab.dev_or_test_env? || Gitlab.com?
- end
-end