summaryrefslogtreecommitdiff
path: root/db/migrate/20211207154413_add_ci_runners_index_on_created_at_where_active_is_false.rb
blob: da391da33ec61c28cbac558ce7c0a30a0bee05a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddCiRunnersIndexOnCreatedAtWhereActiveIsFalse < Gitlab::Database::Migration[1.0]
  INDEX_NAME = 'index_ci_runners_on_created_at_and_id_where_inactive'

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_runners, [:created_at, :id], where: 'active = FALSE', order: { created_at: :desc, id: :desc }, name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :ci_runners, INDEX_NAME
  end
end