22 lines
477 B
Ruby
22 lines
477 B
Ruby
# frozen_string_literal: true
|
|
|
|
class FinaliseProjectNamespaceMembers < Gitlab::Database::Migration[2.0]
|
|
MIGRATION = 'BackfillProjectMemberNamespaceId'
|
|
disable_ddl_transaction!
|
|
|
|
restrict_gitlab_migration gitlab_schema: :gitlab_main
|
|
|
|
def up
|
|
ensure_batched_background_migration_is_finished(
|
|
job_class_name: MIGRATION,
|
|
table_name: :members,
|
|
column_name: :id,
|
|
job_arguments: [],
|
|
finalize: true
|
|
)
|
|
end
|
|
|
|
def down
|
|
# no-op
|
|
end
|
|
end
|