Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20240116205943_add_elasticsearch_max_code_indexing_concurrency_to_application_settings.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c12edcedc84af8e06180044c37a80a29ea99a1f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddElasticsearchMaxCodeIndexingConcurrencyToApplicationSettings < Gitlab::Database::Migration[2.2]
  enable_lock_retries!
  milestone '16.9'

  def change
    add_column :application_settings,
      :elasticsearch_max_code_indexing_concurrency,
      :integer,
      default: 30,
      null: false,
      if_not_exists: true
  end
end