18F/identity-idp

View on GitHub
db/primary_migrate/20210817200558_add_target_index_to_throttles.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddTargetIndexToThrottles < ActiveRecord::Migration[6.1]
  disable_ddl_transaction!

  def change
    add_index :throttles, [:target, :throttle_type], algorithm: :concurrently
  end
end