summaryrefslogtreecommitdiff
path: root/db/migrate/20210519154058_schedule_update_users_where_two_factor_auth_required_from_group.rb
blob: 2da84301a729c06d4482de04979ad73de4570b93 (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
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true

class ScheduleUpdateUsersWhereTwoFactorAuthRequiredFromGroup < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  MIGRATION = 'UpdateUsersWhereTwoFactorAuthRequiredFromGroup'
  DELAY_INTERVAL = 2.minutes
  BATCH_SIZE = 10_000
  INDEX_NAME = 'index_users_require_two_factor_authentication_from_group_false'

  disable_ddl_transaction!

  class User < ActiveRecord::Base
    include EachBatch

    self.table_name = 'users'
  end

  def up
    add_concurrent_index :users,
                         :require_two_factor_authentication_from_group,
                         where: 'require_two_factor_authentication_from_group = FALSE',
                         name: INDEX_NAME

    relation = User.where(require_two_factor_authentication_from_group: false)

    queue_background_migration_jobs_by_range_at_intervals(
      relation, MIGRATION, DELAY_INTERVAL, batch_size: BATCH_SIZE)
  end

  def down
    remove_concurrent_index_by_name :users, INDEX_NAME
  end
end