debian-mirror-gitlab/db/migrate/20221018124035_add_consume_after_index_to_ghost_user_migrations.rb
2023-01-12 18:35:48 +00:00

16 lines
405 B
Ruby

# frozen_string_literal: true
class AddConsumeAfterIndexToGhostUserMigrations < Gitlab::Database::Migration[2.0]
INDEX_NAME = 'index_ghost_user_migrations_on_consume_after_id'
disable_ddl_transaction!
def up
add_concurrent_index :ghost_user_migrations, [:consume_after, :id], name: INDEX_NAME
end
def down
remove_concurrent_index_by_name :ghost_user_migrations, INDEX_NAME
end
end