summaryrefslogtreecommitdiff
path: root/db/migrate/20160616103948_add_unique_index_to_keys_fingerprint.rb
blob: d619acad3d096186f7514b7d57167e82ef07e664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# rubocop:disable RemoveIndex
class AddUniqueIndexToKeysFingerprint < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  disable_ddl_transaction!

  def up
    add_concurrent_index :keys, :fingerprint, unique: true
  end

  def down
    remove_index :keys, :fingerprint
  end
end