Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/post_migrate/20220513043344_reschedule_expire_o_auth_tokens.rb')
-rw-r--r--db/post_migrate/20220513043344_reschedule_expire_o_auth_tokens.rb8
1 files changed, 2 insertions, 6 deletions
diff --git a/db/post_migrate/20220513043344_reschedule_expire_o_auth_tokens.rb b/db/post_migrate/20220513043344_reschedule_expire_o_auth_tokens.rb
index 0c8a2386583..4b24b1cf65a 100644
--- a/db/post_migrate/20220513043344_reschedule_expire_o_auth_tokens.rb
+++ b/db/post_migrate/20220513043344_reschedule_expire_o_auth_tokens.rb
@@ -10,9 +10,7 @@ class RescheduleExpireOAuthTokens < Gitlab::Database::Migration[2.0]
def up
# remove the original migration from db/post_migrate/20220428133724_schedule_expire_o_auth_tokens.rb
- Gitlab::Database::BackgroundMigration::BatchedMigration
- .for_configuration(MIGRATION, :oauth_access_tokens, :id, [])
- .delete_all
+ delete_batched_background_migration(MIGRATION, :oauth_access_tokens, :id, [])
# reschedule
queue_batched_background_migration(
@@ -24,8 +22,6 @@ class RescheduleExpireOAuthTokens < Gitlab::Database::Migration[2.0]
end
def down
- Gitlab::Database::BackgroundMigration::BatchedMigration
- .for_configuration(MIGRATION, :oauth_access_tokens, :id, [])
- .delete_all
+ delete_batched_background_migration(MIGRATION, :oauth_access_tokens, :id, [])
end
end