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

20220413011328_remove_partial_index_on_unencrypted_integrations.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 873080144ab3411862e057e5a7d4e69ec529a258 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# frozen_string_literal: true
#
# The inverse of 20220412143551_add_partial_index_on_unencrypted_integrations.rb
class RemovePartialIndexOnUnencryptedIntegrations < Gitlab::Database::Migration[1.0]
  disable_ddl_transaction!

  INDEX_NAME = 'index_integrations_on_id_where_not_encrypted'
  INDEX_FILTER_CONDITION = 'properties IS NOT NULL AND encrypted_properties IS NULL'

  def down
    add_concurrent_index :integrations, [:id],
      where: INDEX_FILTER_CONDITION,
      name: INDEX_NAME
  end

  def up
    remove_concurrent_index_by_name :integrations, INDEX_NAME
  end
end