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