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

20220203123333_add_batched_migration_max_batch.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d16c6dd41107781b085f2d7d639035a1c51a6545 (plain)
1
2
3
4
5
6
7
# frozen_string_literal: true

class AddBatchedMigrationMaxBatch < Gitlab::Database::Migration[1.0]
  def change
    add_column :batched_background_migrations, :max_batch_size, :integer
  end
end