summaryrefslogtreecommitdiff
path: root/db/migrate/20180720023512_add_receive_max_input_size_to_application_settings.rb
blob: 0cf3c78507e9d1aa440b4702f2475c1ebc2ac6e2 (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[4.2]
  DOWNTIME = false

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