From fcf75d241c07b979ec9cc343db911a8dfafd395b Mon Sep 17 00:00:00 2001 From: Ian Perera Date: Fri, 20 Dec 2024 11:09:08 -0500 Subject: [PATCH] omit type --- modules/va_notify/app/models/va_notify/notification.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/va_notify/app/models/va_notify/notification.rb b/modules/va_notify/app/models/va_notify/notification.rb index d0910568be8..e82a12bca7c 100644 --- a/modules/va_notify/app/models/va_notify/notification.rb +++ b/modules/va_notify/app/models/va_notify/notification.rb @@ -5,6 +5,6 @@ class Notification < ApplicationRecord self.table_name = 'va_notify_notifications' has_kms_key - has_encrypted :to, migrating: true, type: :text, key: :kms_key, **lockbox_options + has_encrypted :to, migrating: true, key: :kms_key, **lockbox_options end end