summaryrefslogtreecommitdiff
path: root/db/migrate/20230403023440_add_database_max_running_batched_background_migrations_to_application_settings.rb
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