debian-mirror-gitlab/db/post_migrate/20201015154527_add_index_on_services_for_usage_data.rb
2021-01-03 14:25:43 +05:30

19 lines
485 B
Ruby

# 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