summaryrefslogtreecommitdiff
path: root/db/migrate/20180720023512_add_receive_max_input_size_to_application_settings.rb
blob: 4ed851a07806089d2388d48d8b50b97cfe3adb09 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddReceiveMaxInputSizeToApplicationSettings < ActiveRecord::Migration
  DOWNTIME = false

  def change
    add_column :application_settings, :receive_max_input_size, :integer
  end
end