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

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

class AddInstanceLevelVariablesColumnToPlanLimits < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :plan_limits, :ci_instance_level_variables, :integer, default: 25, null: false
  end
end