From 33d742e54c655ba7a23d9f7cba67d7abd8d2b69d Mon Sep 17 00:00:00 2001 From: Dylan Griffith <dyl.griffith@gmail.com> Date: Thu, 21 Apr 2022 06:29:01 +0000 Subject: [PATCH] Fix typo in batched background migration docs --- doc/development/batched_background_migrations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/development/batched_background_migrations.md b/doc/development/batched_background_migrations.md index e7703b5dd2b1e..a63786b01b4e9 100644 --- a/doc/development/batched_background_migrations.md +++ b/doc/development/batched_background_migrations.md @@ -203,7 +203,7 @@ do this work in a regular migration. def up queue_batched_background_migration( MIGRATION, - :migrations, + :integrations, :id, job_interval: DELAY_INTERVAL ) @@ -211,7 +211,7 @@ do this work in a regular migration. def down Gitlab::Database::BackgroundMigration::BatchedMigration - .for_configuration(MIGRATION, :migrations, :id, []).delete_all + .for_configuration(MIGRATION, :integrations, :id, []).delete_all end end ``` -- GitLab