debian-mirror-gitlab/db/migrate/20180927073410_add_index_to_project_deploy_tokens_deploy_token_id.rb

18 lines
378 B
Ruby
Raw Normal View History

2018-12-13 13:39:08 +05:30
# frozen_string_literal: true
2019-02-15 15:39:39 +05:30
class AddIndexToProjectDeployTokensDeployTokenId < ActiveRecord::Migration[4.2]
2018-12-13 13:39:08 +05:30
include Gitlab::Database::MigrationHelpers
DOWNTIME = false
disable_ddl_transaction!
def up
2020-01-01 13:55:28 +05:30
add_concurrent_index :project_deploy_tokens, :deploy_token_id
2018-12-13 13:39:08 +05:30
end
def down
2020-01-01 13:55:28 +05:30
remove_concurrent_index(:project_deploy_tokens, :deploy_token_id)
2018-12-13 13:39:08 +05:30
end
end