summaryrefslogtreecommitdiff
path: root/db/post_migrate/20221209235940_cleanup_o_auth_access_tokens_with_null_expires_in.rb
blob: 8daf5bf4d93f97e1b661afb0513f9bdcebf8b6bd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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