debian-mirror-gitlab/db/migrate/20221122141046_add_allow_pipeline_trigger_approve_deployment_to_project_settings.rb
2023-03-04 22:38:38 +05:30

10 lines
293 B
Ruby

# 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