18F/identity-idp

View on GitHub
db/primary_migrate/20221109165826_create_irs_attempt_api_log_files.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateIrsAttemptApiLogFiles < ActiveRecord::Migration[7.0]
  def change
    create_table :irs_attempt_api_log_files do |t|
      t.string :filename
      t.string :iv
      t.text :encrypted_key
      t.datetime :requested_time, index: true

      t.timestamps
    end
  end
end