summaryrefslogtreecommitdiff
path: root/db/migrate/20210527134019_add_diff_max_files_to_application_settings.rb
blob: 60b1f74cfd0129cb8f9b276891fa7392369df44d (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class AddDiffMaxFilesToApplicationSettings < ActiveRecord::Migration[6.0]
  def change
    add_column(:application_settings,
               :diff_max_files,
               :integer,
               default: 1000,
               null: false)
  end
end