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

20230707211359_change_alert_integrations_unique_index.rb « post_migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: eac5d057b40ca7bc7a5618c458195b5fec2d4cdd (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
# frozen_string_literal: true

# Swaps the unique index for AlertManagement::HttpIntegration to include
# inactive integrations, making performance optimizations easier.
#
# At time of writing, gitlab.com has 0 records which would be invalidated
# by the new index. Of the ~1600 integrations, only ~100 are inactive, so the
# size of the index will not significantly change.
class ChangeAlertIntegrationsUniqueIndex < Gitlab::Database::Migration[2.1]
  disable_ddl_transaction!

  UNIQUE_INDEX_NAME = 'index_http_integrations_on_project_and_endpoint'
  OLD_INDEX_NAME = 'index_http_integrations_on_active_and_project_and_endpoint'

  def up
    add_concurrent_index :alert_management_http_integrations,
      [:project_id, :endpoint_identifier],
      name: UNIQUE_INDEX_NAME,
      unique: true

    remove_concurrent_index_by_name :alert_management_http_integrations, OLD_INDEX_NAME
  end

  def down
    add_concurrent_index :alert_management_http_integrations,
      [:active, :project_id, :endpoint_identifier],
      unique: true,
      name: OLD_INDEX_NAME,
      where: 'active'

    remove_concurrent_index_by_name :alert_management_http_integrations, UNIQUE_INDEX_NAME
  end
end