debian-mirror-gitlab/db/post_migrate/20210705143150_backfill_ci_builds_metadata_id_for_bigint_conversion.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
436 B
Ruby
Raw Normal View History

2021-09-04 01:27:46 +05:30
# frozen_string_literal: true
class BackfillCiBuildsMetadataIdForBigintConversion < ActiveRecord::Migration[6.1]
2022-07-23 23:45:48 +05:30
disable_ddl_transaction!
2021-09-04 01:27:46 +05:30
include Gitlab::Database::MigrationHelpers
TABLE = :ci_builds_metadata
COLUMN = :id
def up
backfill_conversion_of_integer_to_bigint TABLE, COLUMN, batch_size: 15000, sub_batch_size: 100
end
def down
revert_backfill_conversion_of_integer_to_bigint TABLE, COLUMN
end
end