debian-mirror-gitlab/db/migrate/20191205060723_add_index_to_keys.rb
2020-01-01 13:55:28 +05:30

18 lines
353 B
Ruby

# frozen_string_literal: true
class AddIndexToKeys < ActiveRecord::Migration[5.2]
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
add_concurrent_index :keys, :last_used_at, order: { last_used_at: 'DESC NULLS LAST' }
end
def down
remove_concurrent_index :keys, :last_used_at
end
end