-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create migration for PoA form submissions (#101919)
- Loading branch information
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
...entative_portal/db/migrate/20250128162530_create_ar_power_of_attorney_form_submissions.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |