summaryrefslogtreecommitdiff
path: root/db/migrate/20200420141733_add_index_on_enabled_clusters.rb
blob: 43f4b072c823696a085a6d122d4d93af9306d20e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddIndexOnEnabledClusters < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false
  INDEX_NAME = 'index_enabled_clusters_on_id'

  disable_ddl_transaction!

  def up
    add_concurrent_index :clusters, [:id], where: 'enabled = true', name: INDEX_NAME
  end

  def down
    remove_concurrent_index :clusters, [:id], where: 'enabled = true', name: INDEX_NAME
  end
end