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

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

  INDEX_NAME = 'index_web_hooks_on_project_id_recent_failures'

  disable_ddl_transaction!

  def up
    add_concurrent_index(:web_hooks, [:project_id, :recent_failures], name: INDEX_NAME)
  end

  def down
    remove_concurrent_index_by_name(:web_hooks, INDEX_NAME)
  end
end