Commit b47e6660 authored by Mark Chao's avatar Mark Chao

Make migration symmetric

parent 666ddec9
......@@ -8,7 +8,8 @@ class AddIndexToProjectDeployTokensDeployTokenId < ActiveRecord::Migration
disable_ddl_transaction!
def up
add_concurrent_index :project_deploy_tokens, :deploy_token_id
# MySQL already has index inserted
add_concurrent_index :project_deploy_tokens, :deploy_token_id if Gitlab::Database.postgresql?
end
def down
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment