debian-mirror-gitlab/db/migrate/20201027211138_increase_default_diff_max_patch_bytes.rb
2021-01-29 00:20:46 +05:30

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