mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-21 21:29:30 +00:00
4 lines
246 B
SQL
4 lines
246 B
SQL
-- 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'); |