Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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, 0 insertions, 17 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
deleted file mode 100644
index 8c7f6426587..00000000000
--- a/db/migrate/20200128141125_add_index_web_hooks_on_group_id.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-# 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