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

class AddIndexToCiBuildsTokenEncrypted < ActiveRecord::Migration[5.0]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :ci_builds, :token_encrypted, unique: true, where: 'token_encrypted IS NOT NULL'
  end

  def down
    remove_concurrent_index :ci_builds, :token_encrypted
  end
end