summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220412143551_add_partial_index_on_unencrypted_integrations.rb
blob: 0f5415d6bf5d41c1af00d7fed5459e4a15c3a7d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true
#
class AddPartialIndexOnUnencryptedIntegrations < 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 up
    add_concurrent_index :integrations, [:id],
      where: INDEX_FILTER_CONDITION,
      name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :integrations, INDEX_NAME
  end
end