summaryrefslogtreecommitdiff
path: root/db/migrate/20200707095849_add_load_performance_to_plan_limits.rb
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