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