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

20220531140515_add_applies_to_all_protected_branches_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: 4015d3fa1f78d3341e632f878600f003a1237de8 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddAppliesToAllProtectedBranchesToApprovalProjectRule < Gitlab::Database::Migration[2.0]
  def change
    add_column :approval_project_rules, :applies_to_all_protected_branches, :boolean, default: false, null: false
  end
end