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

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

class AddRestrictDeploymentOrderToProjectCiCdSettings < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    add_column :project_ci_cd_settings, :forward_deployment_enabled, :boolean
  end
end