debian-mirror-gitlab/db/migrate/20210319071214_add_helm_max_file_size_to_plan_limits.rb
2021-06-08 01:23:25 +05:30

10 lines
234 B
Ruby

# frozen_string_literal: true
class AddHelmMaxFileSizeToPlanLimits < ActiveRecord::Migration[6.0]
DOWNTIME = false
def change
add_column :plan_limits, :helm_max_file_size, :bigint, default: 5.megabyte, null: false
end
end