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

20231113025718_drop_index_users_require_two_factor_authentication_from_group_false.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28fc0bab5a084286f4712017c7e754987cd293ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

class DropIndexUsersRequireTwoFactorAuthenticationFromGroupFalse < Gitlab::Database::Migration[2.2]
  milestone '16.7'

  disable_ddl_transaction!

  TABLE_NAME = :users
  INDEX_NAME = :index_users_require_two_factor_authentication_from_group_false

  def up
    remove_concurrent_index_by_name TABLE_NAME, INDEX_NAME
  end

  def down
    add_concurrent_index TABLE_NAME, :require_two_factor_authentication_from_group,
      where: 'require_two_factor_authentication_from_group = FALSE',
      name: INDEX_NAME
  end
end