summaryrefslogtreecommitdiff
path: root/db/migrate/20200903054946_add_elasticsearch_client_timeout.rb
blob: 93e7046164153d86cefbb99da7c6a7f433f7e73d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

# See https://docs.gitlab.com/ee/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.

class AddElasticsearchClientTimeout < ActiveRecord::Migration[6.0]
  DOWNTIME = false

  def change
    add_column :application_settings, :elasticsearch_client_request_timeout, :integer, null: false, default: 0
  end
end