summaryrefslogtreecommitdiff
path: root/db/post_migrate/20220912085047_add_index_to_todos_pending_query.rb
blob: 7d721421463182c313bb25da2daf1220d1b28bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

class AddIndexToTodosPendingQuery < Gitlab::Database::Migration[2.0]
  disable_ddl_transaction!

  INDEX_NAME = 'index_on_todos_user_project_target_and_state'
  COLUMNS = %i[user_id project_id target_type target_id id].freeze

  def up
    add_concurrent_index :todos, COLUMNS, name: INDEX_NAME, where: "state = 'pending'"
  end

  def down
    remove_concurrent_index_by_name :todos, INDEX_NAME
  end
end