OpenMetadata/bootstrap/sql/migrations/native/1.10.5/mysql/postDataMigrationSQLScript.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');