debian-mirror-gitlab/db/migrate/20200707094341_add_browser_performance_to_plan_limits.rb
2020-08-09 17:44:08 +05:30

10 lines
252 B
Ruby

# 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