diff --git a/db/schema.rb b/db/schema.rb index 016e19e5d97..f099553cb06 100644 --- a/db/schema.rb +++ b/db/schema.rb @@ -1401,6 +1401,8 @@ t.jsonb "callback_metadata" t.text "callback_klass" t.uuid "template_id" + t.text "to_ciphertext" + t.text "encrypted_kms_key" end create_table "vba_documents_monthly_stats", force: :cascade do |t| diff --git a/modules/va_notify/db/migrate/20241206163037_add_to_ciphertext.rb b/modules/va_notify/db/migrate/20241206163037_add_to_ciphertext.rb new file mode 100644 index 00000000000..60f329054d4 --- /dev/null +++ b/modules/va_notify/db/migrate/20241206163037_add_to_ciphertext.rb @@ -0,0 +1,6 @@ +class AddToCiphertext < ActiveRecord::Migration[7.1] + def change + add_column :va_notify_notifications, :to_ciphertext, :text + add_column :va_notify_notifications, :encrypted_kms_key, :text + end +end