summaryrefslogtreecommitdiff
path: root/db/migrate/20180927073410_add_index_to_project_deploy_tokens_deploy_token_id.rb
blob: 61d32fe16ebec28fb63bc87babf4b27095690306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class AddIndexToProjectDeployTokensDeployTokenId < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    # MySQL already has index inserted
    add_concurrent_index :project_deploy_tokens, :deploy_token_id if Gitlab::Database.postgresql?
  end

  def down
    remove_concurrent_index(:project_deploy_tokens, :deploy_token_id) if Gitlab::Database.postgresql?
  end
end