summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb
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, 25 insertions, 0 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
new file mode 100644
index 00000000000..8daf5bf4d93
--- /dev/null
+++ b/db/post_migrate/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb
@@ -0,0 +1,25 @@
+# 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