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

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

class DropIndexKeysOnExpiresAtAndBeforeExpiryNotificationUndelivered < Gitlab::Database::Migration[1.0]
  DOWNTIME = false
  INDEX_NAME = 'index_keys_on_expires_at_and_expiry_notification_undelivered'
  disable_ddl_transaction!

  def up
    remove_concurrent_index_by_name(:keys, INDEX_NAME)
  end

  def down
    add_concurrent_index :keys,
                         "date(timezone('UTC', expires_at)), expiry_notification_delivered_at",
                         where: 'expiry_notification_delivered_at IS NULL', name: INDEX_NAME
  end
end