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

class AddIndexToOperationsFeatureFlagsClientsTokenEncrypted < ActiveRecord::Migration[5.1]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  disable_ddl_transaction!

  def up
    add_concurrent_index :operations_feature_flags_clients, [:project_id, :token_encrypted],
      unique: true, name: "index_feature_flags_clients_on_project_id_and_token_encrypted"
  end

  def down
    remove_concurrent_index_by_name :operations_feature_flags_clients, "index_feature_flags_clients_on_project_id_and_token_encrypted"
  end
end