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

20200707095849_add_load_performance_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: df95956f089f781c42c9b3f783e652e2b7512b81 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

  def change
    add_column :plan_limits, "ci_max_artifact_size_load_performance", :integer, default: 0, null: false
  end
end