summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210420121149_backfill_conversion_of_ci_job_artifacts.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20210420121149_backfill_conversion_of_ci_job_artifacts.rb')
-rw-r--r--db/post_migrate/20210420121149_backfill_conversion_of_ci_job_artifacts.rb31
1 files changed, 0 insertions, 31 deletions
diff --git a/db/post_migrate/20210420121149_backfill_conversion_of_ci_job_artifacts.rb b/db/post_migrate/20210420121149_backfill_conversion_of_ci_job_artifacts.rb
deleted file mode 100644
index 0c68834f723..00000000000
--- a/db/post_migrate/20210420121149_backfill_conversion_of_ci_job_artifacts.rb
+++ /dev/null
@@ -1,31 +0,0 @@
-# frozen_string_literal: true
-
-class BackfillConversionOfCiJobArtifacts < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- return unless should_run?
-
- backfill_conversion_of_integer_to_bigint :ci_job_artifacts, %i(id job_id), batch_size: 15000, sub_batch_size: 100
- end
-
- def down
- return unless should_run?
-
- Gitlab::Database::BackgroundMigration::BatchedMigration
- .where(job_class_name: 'CopyColumnUsingBackgroundMigrationJob')
- .where(table_name: 'ci_job_artifacts', column_name: 'id')
- .where(job_arguments: Gitlab::Json.dump([%w[id job_id], %w[id_convert_to_bigint job_id_convert_to_bigint]]))
- .delete_all
- end
-
- private
-
- def should_run?
- Gitlab.dev_or_test_env? || Gitlab.com?
- end
-end