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/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb')
-rw-r--r--db/post_migrate/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb25
1 files changed, 0 insertions, 25 deletions
diff --git a/db/post_migrate/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb b/db/post_migrate/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb
deleted file mode 100644
index 8daf5bf4d93..00000000000
--- a/db/post_migrate/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-# frozen_string_literal: true
-
-class CleanupOAuthAccessTokensWithNullExpiresIn < Gitlab::Database::Migration[2.1]
- MIGRATION = 'ReExpireOAuthTokens'
- INTERVAL = 2.minutes
- MAX_BATCH_SIZE = 50_000
-
- disable_ddl_transaction!
-
- restrict_gitlab_migration gitlab_schema: :gitlab_main
-
- def up
- queue_batched_background_migration(
- MIGRATION,
- :oauth_access_tokens,
- :id,
- job_interval: INTERVAL,
- max_batch_size: MAX_BATCH_SIZE
- )
- end
-
- def down
- delete_batched_background_migration(MIGRATION, :oauth_access_tokens, :id, [])
- end
-end