diff --git a/db/primary_migrate/20241023191918_add_socure_docv_capture_app_url_to_document_capture_sessions_w_comment.rb b/db/primary_migrate/20241023191918_add_socure_docv_capture_app_url_to_document_capture_sessions_w_comment.rb new file mode 100644 index 00000000000..6fe9739d4af --- /dev/null +++ b/db/primary_migrate/20241023191918_add_socure_docv_capture_app_url_to_document_capture_sessions_w_comment.rb @@ -0,0 +1,5 @@ +class AddSocureDocvCaptureAppUrlToDocumentCaptureSessionsWComment < ActiveRecord::Migration[7.2] + def change + add_column :document_capture_sessions, :socure_docv_capture_app_url, :string, comment: 'sensitive=false' + end +end diff --git a/db/schema.rb b/db/schema.rb index 40617fc275e..cbb37d407b2 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -10,7 +10,7 @@ # # It's strongly recommended that you check this file into your version control system. -ActiveRecord::Schema[7.2].define(version: 2024_10_17_153042) do +ActiveRecord::Schema[7.2].define(version: 2024_10_23_191918) do # These are extensions that must be enabled in order to support this database enable_extension "citext" enable_extension "pg_stat_statements" @@ -192,6 +192,7 @@ t.boolean "ocr_confirmation_pending", default: false, comment: "sensitive=false" t.string "last_doc_auth_result", comment: "sensitive=false" t.string "socure_docv_transaction_token", comment: "sensitive=false" + t.string "socure_docv_capture_app_url", comment: "sensitive=false" t.index ["result_id"], name: "index_document_capture_sessions_on_result_id" t.index ["user_id"], name: "index_document_capture_sessions_on_user_id" t.index ["uuid"], name: "index_document_capture_sessions_on_uuid"