Skip to content

Commit

Permalink
Add evidencesubmissions table and run db migrate (#20318)
Browse files Browse the repository at this point in the history
  • Loading branch information
pmclaren19 authored Jan 16, 2025
1 parent 46d3e96 commit 6d711cb
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
24 changes: 24 additions & 0 deletions db/migrate/20250116155354_create_evidence_submissions.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
class CreateEvidenceSubmissions < ActiveRecord::Migration[7.2]
def change
create_table :evidence_submissions do |t|
t.string :job_id
t.string :job_class
t.string :request_id
t.string :claim_id
t.references :user_account, null: false, foreign_key: true, type: :uuid
t.json :template_metadata_ciphertext
t.text :encrypted_kms_key
t.string :upload_status
t.string :va_notify_id
t.string :va_notify_status
t.datetime :va_notify_date
t.datetime :delete_date
t.datetime :acknowledgement_date
t.datetime :failed_date
t.string :error_message
t.string :tracked_item_id

t.timestamps
end
end
end
23 changes: 23 additions & 0 deletions db/schema.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 6d711cb

Please sign in to comment.