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

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

class AddPolicyIdxToApprovalProjectRule < Gitlab::Database::Migration[1.0]
  enable_lock_retries!

  def change
    add_column :approval_project_rules, :orchestration_policy_idx, :integer, limit: 2
  end
end