gitlab-org--gitlab-foss/db/migrate/20210319071214_add_helm_max...

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