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

class AddIndexWebHooksOnGroupId < ActiveRecord::Migration[5.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :web_hooks, :group_id, where: "type = 'GroupHook'"
  end

  def down
    remove_concurrent_index :web_hooks, :group_id, where: "type = 'GroupHook'"
  end
end