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

20230726142141_add_max_file_download_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: d395da9f14daa15d206b641d10992fda7b02a20c (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddMaxFileDownloadSizeToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :bulk_import_max_download_file_size, :bigint, default: 5120, null: false
  end
end