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

20230403023440_add_database_max_running_batched_background_migrations_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: 136855403f918b8f84c6f836315a8df2868b571a (plain)
1
2
3
4
5
6
7
8
# frozen_string_literal: true

class AddDatabaseMaxRunningBatchedBackgroundMigrationsToApplicationSettings < Gitlab::Database::Migration[2.1]
  def change
    add_column :application_settings, :database_max_running_batched_background_migrations,
      :integer, null: false, default: 2
  end
end