18F/identity-idp

View on GitHub
db/primary_migrate/20230625143140_drop_irs_attempt_api_log_files.rb

Summary

Maintainability
A
0 mins
Test Coverage
class DropIrsAttemptApiLogFiles < ActiveRecord::Migration[7.0]
  def change
    drop_table :irs_attempt_api_log_files do |t|
      t.string "filename"
      t.string "iv"
      t.text "encrypted_key"
      t.datetime "created_at", null: false
      t.datetime "updated_at", null: false
      t.string "requested_time"
    end
  end
end