Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20220411173544_cleanup_orphans_approval_project_rules.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f7132407adbb92131abea69da5a3c84609ce05d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class CleanupOrphansApprovalProjectRules < Gitlab::Database::Migration[1.0]
  class ApprovalProjectRule < ActiveRecord::Base
    self.table_name = 'approval_project_rules'
  end

  def up
    return unless Gitlab.ee?

    ApprovalProjectRule.reset_column_information

    logger = ::Gitlab::BackgroundMigration::Logger.build
    records_ids = []

    # Related enum: report_type: { vulnerability: 1, license_scanning: 2, code_coverage: 3, scan_finding: 4 }
    ApprovalProjectRule.where(report_type: 4)
      .joins("LEFT JOIN security_orchestration_policy_configurations
              ON approval_project_rules.project_id = security_orchestration_policy_configurations.project_id")
      .where(security_orchestration_policy_configurations: { project_id: nil }).each do |record|
      records_ids << record.id
      logger.info(
        message: "CleanupOrphansApprovalProjectRules with record id: #{record.id}",
        class: ApprovalProjectRule.name,
        attributes: record.attributes
      )
    end

    ApprovalProjectRule.where(id: records_ids).delete_all
  end

  def down
    # no-op
  end
end