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

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

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

  def change
    change_column_default(:application_settings, :diff_max_patch_bytes, from: 102400, to: 204800)
  end
end