Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20211207154414_add_ci_runners_index_on_contacted_at_where_active_is_false.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e25d3c0dffad9a3bcc8bfa44b60da638aea973be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

class AddCiRunnersIndexOnContactedAtWhereActiveIsFalse < Gitlab::Database::Migration[1.0]
  INDEX_NAME = 'index_ci_runners_on_contacted_at_and_id_where_inactive'

  disable_ddl_transaction!

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

  def down
    remove_concurrent_index_by_name :ci_runners, INDEX_NAME
  end
end