mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-23 14:13:39 +00:00
4 lines
246 B
MySQL
4 lines
246 B
MySQL
|
|
-- 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');
|