18F/identity-idp

View on GitHub
db/primary_migrate/20220906112214_add_threatmetrix_to_proofing_cost.rb

Summary

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

  def up
    add_column :proofing_costs, :threatmetrix_count, :integer
    change_column_default :proofing_costs, :threatmetrix_count, 0
  end

  def down
    remove_column :proofing_costs, :threatmetrix_count
  end
end