summaryrefslogtreecommitdiff
path: root/db/migrate/20221018124035_add_consume_after_index_to_ghost_user_migrations.rb
blob: 543d91b3f3359cce49ab0233aaf3b5f8d632a8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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