summaryrefslogtreecommitdiff
path: root/spec/factories/gitlab/database/background_migration/batched_migrations.rb
blob: 49cbdc5a8fba1204a5844be4f6db1c7aa7a5a058 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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 }
  end
end