debian-mirror-gitlab/db/post_migrate/20230310213308_sync_security_policy_rule_schedules_that_may_have_been_deleted_by_a_bug.rb
2023-05-27 22:25:52 +05:30

38 lines
1 KiB
Ruby

# frozen_string_literal: true
class SyncSecurityPolicyRuleSchedulesThatMayHaveBeenDeletedByABug < Gitlab::Database::Migration[2.1]
disable_ddl_transaction!
restrict_gitlab_migration gitlab_schema: :gitlab_main
class OrchestrationPolicyRuleSchedule < MigrationRecord
self.table_name = 'security_orchestration_policy_rule_schedules'
end
def up
return unless Gitlab.ee?
return unless sync_scan_policies_worker
OrchestrationPolicyRuleSchedule
.select(:security_orchestration_policy_configuration_id)
.distinct
.where(policy_index: 1..)
.pluck(:security_orchestration_policy_configuration_id)
.map { |policy_configuration_id| [policy_configuration_id] }
.then { |args_list| sync_scan_policies_worker.bulk_perform_async(args_list) }
end
def down
# no-op
end
private
def sync_scan_policies_worker
unless defined?(@sync_scan_policies_worker)
@sync_scan_policies_worker = 'Security::SyncScanPoliciesWorker'.safe_constantize
end
@sync_scan_policies_worker
end
end