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

20230202153926_add_scan_result_policy_id_to_approval_rules.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b72405ccf3073c4745622ef4f7f16d8efe695749 (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class AddScanResultPolicyIdToApprovalRules < Gitlab::Database::Migration[2.1]
  enable_lock_retries!

  def change
    add_column :approval_project_rules, :scan_result_policy_id, :bigint
    add_column :approval_merge_request_rules, :scan_result_policy_id, :bigint
  end
end