summaryrefslogtreecommitdiff
path: root/db/migrate/20200707094341_add_browser_performance_to_plan_limits.rb
blob: ef0bea88eadf4159c719b7803e2726e10795d685 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

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

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