gitlab-org--gitlab-foss/db/migrate/20201027211138_increase_def...

10 lines
242 B
Ruby

# 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