summaryrefslogtreecommitdiff
path: root/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb')
-rw-r--r--db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb b/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb
new file mode 100644
index 00000000000..8c7f6426587
--- /dev/null
+++ b/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb
@@ -0,0 +1,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