diff options
author | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-04-25 00:02:58 +0200 |
---|---|---|
committer | Pawel Chojnacki <pawel@chojnacki.ws> | 2017-04-25 00:02:58 +0200 |
commit | 230608e92b3177ae13877f56eb6da051d938d7ed (patch) | |
tree | 6384249a3eba7f6273cfeacb8fa533b5e399f318 /db | |
parent | 33f7c40f3f7d2b342dcaa839b7cd56599a573c65 (diff) | |
download | gitlab-ce-230608e92b3177ae13877f56eb6da051d938d7ed.tar.gz |
Remove concurrent index
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20170327091750_add_created_at_index_to_deployments.rb | 2 |
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 |