debian-mirror-gitlab/db/migrate/20200124143014_add_restrict_deployment_order_to_project_ci_cd_settings.rb
2020-03-13 15:44:24 +05:30

10 lines
237 B
Ruby

# 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