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

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

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

  def change
    add_column :project_settings, :allow_pipeline_trigger_approve_deployment, :boolean, default: false, null: false
  end
end