summaryrefslogtreecommitdiff
path: root/db/post_migrate/20210415101228_backfill_ci_build_needs_for_bigint_conversion.rb
blob: 8fcaeb3fb047a1ef7ad88b19f5ef3c2288e70402 (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
# frozen_string_literal: true

class BackfillCiBuildNeedsForBigintConversion < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  DOWNTIME = false

  def up
    return unless should_run?

    backfill_conversion_of_integer_to_bigint :ci_build_needs, :build_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_build_needs', column_name: 'build_id')
      .where(job_arguments: Gitlab::Json.dump(%w[build_id build_id_convert_to_bigint]))
      .delete_all
  end

  private

  def should_run?
    Gitlab.dev_or_test_env? || Gitlab.com?
  end
end