summaryrefslogtreecommitdiff
path: root/db/migrate/20201027211138_increase_default_diff_max_patch_bytes.rb
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