summaryrefslogtreecommitdiff
path: root/db/migrate/20210609090856_add_expiry_id_ssh_key_notification_index.rb
blob: 406bbe2095f32d6fe74441d6a1b1084ea82e44fd (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 AddExpiryIdSshKeyNotificationIndex < ActiveRecord::Migration[6.1]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  INDEX_NAME = 'index_keys_on_expires_at_and_id'

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

  def down
    remove_concurrent_index_by_name :keys, INDEX_NAME
  end
end