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

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

class AddRequiredApprovalCountToProtectedEnvironments < Gitlab::Database::Migration[1.0]
  def change
    add_column :protected_environments, :required_approval_count, :integer, default: 0, null: false
  end
end