Remove deprecated defaultTemplateChecksum field via 1.10.5 migration (#24137)

This commit is contained in:
Adrià Manero 2025-11-04 08:46:38 +01:00 committed by GitHub
parent edb52e2958
commit 1d64d35d70
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,4 @@
-- Remove deprecated defaultTemplateChecksum field from notification_template_entity
UPDATE notification_template_entity
SET json = JSON_REMOVE(json, '$.defaultTemplateChecksum')
WHERE JSON_CONTAINS_PATH(json, 'one', '$.defaultTemplateChecksum');

View File

@ -0,0 +1 @@
-- Schema changes for 1.10.5 release

View File

@ -0,0 +1,3 @@
-- Remove deprecated defaultTemplateChecksum field from notification_template_entity
UPDATE notification_template_entity
SET json = json::jsonb - 'defaultTemplateChecksum';

View File

@ -0,0 +1 @@
-- Schema changes for 1.10.5 release