summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPawel Chojnacki <pawel@chojnacki.ws>2017-04-25 00:02:58 +0200
committerPawel Chojnacki <pawel@chojnacki.ws>2017-04-25 00:02:58 +0200
commit230608e92b3177ae13877f56eb6da051d938d7ed (patch)
tree6384249a3eba7f6273cfeacb8fa533b5e399f318
parent33f7c40f3f7d2b342dcaa839b7cd56599a573c65 (diff)
downloadgitlab-ce-230608e92b3177ae13877f56eb6da051d938d7ed.tar.gz
Remove concurrent index
-rw-r--r--db/migrate/20170327091750_add_created_at_index_to_deployments.rb2
1 files changed, 1 insertions, 1 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
index 9cc35d08e1a..fd6ed499b80 100644
--- a/db/migrate/20170327091750_add_created_at_index_to_deployments.rb
+++ b/db/migrate/20170327091750_add_created_at_index_to_deployments.rb
@@ -10,6 +10,6 @@ class AddCreatedAtIndexToDeployments < ActiveRecord::Migration
end
def down
- remove_index :deployments, :created_at
+ remove_concurrent_index :deployments, :created_at
end
end