summaryrefslogtreecommitdiff
path: root/db/migrate/20170424142900_add_index_to_web_hooks_type.rb
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20170424142900_add_index_to_web_hooks_type.rb')
-rw-r--r--db/migrate/20170424142900_add_index_to_web_hooks_type.rb15
1 files changed, 0 insertions, 15 deletions
diff --git a/db/migrate/20170424142900_add_index_to_web_hooks_type.rb b/db/migrate/20170424142900_add_index_to_web_hooks_type.rb
deleted file mode 100644
index 1c56c1ed65a..00000000000
--- a/db/migrate/20170424142900_add_index_to_web_hooks_type.rb
+++ /dev/null
@@ -1,15 +0,0 @@
-class AddIndexToWebHooksType < ActiveRecord::Migration[4.2]
- include Gitlab::Database::MigrationHelpers
-
- DOWNTIME = false
-
- disable_ddl_transaction!
-
- def up
- add_concurrent_index :web_hooks, :type
- end
-
- def down
- remove_concurrent_index :web_hooks, :type
- end
-end