Skip to content

Commit

Permalink
Create migration for PoA form submissions (#101919)
Browse files Browse the repository at this point in the history
  • Loading branch information
pixiitech committed Jan 31, 2025
1 parent 9a08892 commit e3afde3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
13 changes: 12 additions & 1 deletion db/schema.rb

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

Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
class CreateArPowerOfAttorneyFormSubmissions < ActiveRecord::Migration[7.2]
def change
create_table :ar_power_of_attorney_form_submissions do |t|
t.uuid :power_of_attorney_request_id, null: false
t.string :service_id
t.jsonb :service_response_ciphertext
t.string :status, default: 'pending'
t.datetime :status_updated_at
t.text :error_message_ciphertext

t.timestamps
end
end
end

0 comments on commit e3afde3

Please sign in to comment.