debian-mirror-gitlab/db/post_migrate/20210930211936_backfill_user_namespace.rb

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

27 lines
547 B
Ruby
Raw Normal View History

2021-12-11 22:18:48 +05:30
# frozen_string_literal: true
class BackfillUserNamespace < Gitlab::Database::Migration[1.0]
MIGRATION = 'BackfillUserNamespace'
INTERVAL = 2.minutes
BATCH_SIZE = 1_000
SUB_BATCH_SIZE = 200
DOWNTIME = false
2022-07-23 23:45:48 +05:30
disable_ddl_transaction!
2021-12-11 22:18:48 +05:30
def up
queue_batched_background_migration(
MIGRATION,
:namespaces,
:id,
job_interval: INTERVAL,
batch_size: BATCH_SIZE,
sub_batch_size: SUB_BATCH_SIZE
)
end
def down
2022-07-23 23:45:48 +05:30
delete_batched_background_migration(MIGRATION, :namespaces, :id, [])
2021-12-11 22:18:48 +05:30
end
end