debian-mirror-gitlab/db/migrate/20201027211138_increase_default_diff_max_patch_bytes.rb

10 lines
242 B
Ruby
Raw Normal View History

2021-01-29 00:20:46 +05:30
# 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