debian-mirror-gitlab/db/migrate/20200707095849_add_load_performance_to_plan_limits.rb

10 lines
246 B
Ruby
Raw Normal View History

2020-07-28 23:09:34 +05:30
# 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