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

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

  DOWNTIME = false
  INDEX_NAME = 'index_services_on_type_id_when_active_and_project_id_not_null'

  disable_ddl_transaction!

  def up
    add_concurrent_index :services, [:type, :id], where: 'active = TRUE AND project_id IS NOT NULL', name: INDEX_NAME
  end

  def down
    remove_concurrent_index_by_name :services, INDEX_NAME
  end
end