18F/identity-idp

View on GitHub
db/primary_migrate/20230622142018_add_fraud_pending_reason_to_profile.rb

Summary

Maintainability
A
0 mins
Test Coverage
class AddFraudPendingReasonToProfile < ActiveRecord::Migration[7.0]
  disable_ddl_transaction!

  def change
    add_column :profiles, :fraud_pending_reason, :integer
    add_index :profiles, :fraud_pending_reason, algorithm: :concurrently
  end
end