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

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

class UpdateMaxImportSizeDefault < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    change_column_default(:application_settings, :max_import_size, from: 50, to: 0)
  end
end