summaryrefslogtreecommitdiff
path: root/db/migrate/20210520133440_backfill_taggings_for_bigint_conversion.rb
blob: 63ac308e4be7de6fa1e74f49a3b30b2cff8de294 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

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

  TABLE = :taggings
  COLUMNS = %i(id taggable_id)

  def up
    backfill_conversion_of_integer_to_bigint TABLE, COLUMNS, batch_size: 15000, sub_batch_size: 100
  end

  def down
    revert_backfill_conversion_of_integer_to_bigint TABLE, COLUMNS
  end
end