debian-mirror-gitlab/db/migrate/20181129104944_add_index_to_ci_builds_token_encrypted.rb
2019-02-15 15:39:39 +05:30

18 lines
395 B
Ruby

# 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