gitlab-org--gitlab-foss/db/migrate/20200124143014_add_restrict...

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