summaryrefslogtreecommitdiff
path: root/db/migrate/20201030223933_add_ci_pipeline_deployments_to_plan_limits.rb
blob: 60f0ff9d6edd79a60f5a18b5011a8f5188450763 (plain)
1
2
3
4
5
6
7
8
9
# 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