18F/identity-idp

View on GitHub
db/primary_migrate/20220422190622_drop_doc_auths.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DropDocAuths < ActiveRecord::Migration[6.1]
  def up
    drop_table :doc_auths
  end

  def down
    create_table :doc_auths do |t|
      t.references :user, null: false
      t.datetime :attempted_at
      t.integer :attempts, default: 0
      t.datetime :license_confirmed_at
      t.datetime :selfie_confirmed_at
      t.timestamps
    end
  end
end