debian-mirror-gitlab/lib/gitlab/background_migration/destroy_invalid_group_members.rb
2022-10-11 01:57:18 +05:30

23 lines
803 B
Ruby

# frozen_string_literal: true
module Gitlab
module BackgroundMigration
class DestroyInvalidGroupMembers < Gitlab::BackgroundMigration::BatchedMigrationJob # rubocop:disable Style/Documentation
scope_to ->(relation) do
relation.where(source_type: 'Namespace')
.joins('LEFT OUTER JOIN namespaces ON members.source_id = namespaces.id')
.where(namespaces: { id: nil })
end
def perform
each_sub_batch(operation_name: :delete_all) do |sub_batch|
invalid_ids = sub_batch.map(&:id)
Gitlab::AppLogger.info({ message: 'Removing invalid group member records',
deleted_count: invalid_ids.size, ids: invalid_ids })
sub_batch.delete_all
end
end
end
end
end