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

class AddIndexToDomain < ActiveRecord::Migration[6.0]
  include Gitlab::Database::MigrationHelpers
  DOWNTIME = false
  INDEX_NAME = 'index_alert_management_alerts_on_domain'

  disable_ddl_transaction!

  def up
    add_concurrent_index :alert_management_alerts, :domain, name: INDEX_NAME
  end

  def down
    remove_concurrent_index :alert_management_alerts, :domain, name: INDEX_NAME
  end
end