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

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

class AddDecompressArchiveFileTimeoutToApplicationSetting < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  def change
    add_column :application_settings, :decompress_archive_file_timeout, :integer, default: 210, null: false
  end
end