summaryrefslogtreecommitdiff
path: root/spec/factories/gitlab/database/background_migration/batched_migrations.rb
blob: c03841d8c02b8dcaaa48085127f235bf64a3c93f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

FactoryBot.define do
  factory :batched_background_migration, class: '::Gitlab::Database::BackgroundMigration::BatchedMigration' do
    max_value { 10 }
    batch_size { 5 }
    sub_batch_size { 1 }
    interval { 2.minutes }
    job_class_name { 'CopyColumnUsingBackgroundMigrationJob' }
    table_name { :events }
    column_name { :id }
    total_tuple_count { 10_000 }
    pause_ms { 100 }
  end
end