Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20230802065830_add_max_decompression_archive_size_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2ed6204b0a4586eccbd98410bc28fc45b52cbfb (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddMaxDecompressionArchiveSizeToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :max_decompressed_archive_size, :integer, default: 25600, null: false
  end
end