summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200406102120_backfill_deployment_clusters_from_deployments.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20200406102120_backfill_deployment_clusters_from_deployments.rb')
-rw-r--r--db/post_migrate/20200406102120_backfill_deployment_clusters_from_deployments.rb34
1 files changed, 0 insertions, 34 deletions
diff --git a/db/post_migrate/20200406102120_backfill_deployment_clusters_from_deployments.rb b/db/post_migrate/20200406102120_backfill_deployment_clusters_from_deployments.rb
deleted file mode 100644
index ab217ba92ab..00000000000
--- a/db/post_migrate/20200406102120_backfill_deployment_clusters_from_deployments.rb
+++ /dev/null
@@ -1,34 +0,0 @@
-# frozen_string_literal: true
-
-# See http://doc.gitlab.com/ce/development/migration_style_guide.html
-# for more information on how to write migrations for GitLab.
-
-class BackfillDeploymentClustersFromDeployments < ActiveRecord::Migration[6.0]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- MIGRATION = 'BackfillDeploymentClustersFromDeployments'
- DELAY_INTERVAL = 2.minutes
- BATCH_SIZE = 10_000
-
- disable_ddl_transaction!
-
- class Deployment < ActiveRecord::Base
- include EachBatch
-
- default_scope { where.not(cluster_id: nil) } # rubocop:disable Cop/DefaultScope
-
- self.table_name = 'deployments'
- end
-
- def up
- say "Scheduling `#{MIGRATION}` jobs"
-
- queue_background_migration_jobs_by_range_at_intervals(Deployment, MIGRATION, DELAY_INTERVAL, batch_size: BATCH_SIZE)
- end
-
- def down
- # NOOP
- end
-end