summaryrefslogtreecommitdiff
path: root/db/post_migrate/20200406102120_backfill_deployment_clusters_from_deployments.rb
blob: 2db270d303c8f1f645d185c8d858f6176147ce74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# 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('cluster_id IS NOT NULL') }

    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