debian-mirror-gitlab/db/migrate/20201030223933_add_ci_pipeline_deployments_to_plan_limits.rb
2021-02-22 17:27:13 +05:30

10 lines
239 B
Ruby

# frozen_string_literal: true
class AddCiPipelineDeploymentsToPlanLimits < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :plan_limits, :ci_pipeline_deployments, :integer, default: 500, null: false
end
end