summaryrefslogtreecommitdiff
path: root/spec/factories/gitlab/database/background_migration/batched_migrations.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/factories/gitlab/database/background_migration/batched_migrations.rb')
-rw-r--r--spec/factories/gitlab/database/background_migration/batched_migrations.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/spec/factories/gitlab/database/background_migration/batched_migrations.rb b/spec/factories/gitlab/database/background_migration/batched_migrations.rb
index de57e0c1565..79b4447b76e 100644
--- a/spec/factories/gitlab/database/background_migration/batched_migrations.rb
+++ b/spec/factories/gitlab/database/background_migration/batched_migrations.rb
@@ -12,5 +12,13 @@ FactoryBot.define do
sequence(:job_arguments) { |n| [["column_#{n}"], ["column_#{n}_convert_to_bigint"]] }
total_tuple_count { 10_000 }
pause_ms { 100 }
+
+ trait :finished do
+ status { :finished }
+ end
+
+ trait :failed do
+ status { :failed }
+ end
end
end