mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
7 lines
348 B
MySQL
7 lines
348 B
MySQL
|
|
UPDATE workflow_definition_entity
|
||
|
|
SET json = JSON_SET(json, '$.trigger.type', 'eventBasedEntity')
|
||
|
|
WHERE JSON_EXTRACT(json, '$.trigger.type') = 'eventBasedEntityWorkflow';
|
||
|
|
|
||
|
|
UPDATE workflow_definition_entity
|
||
|
|
SET json = JSON_SET(json, '$.trigger.type', 'periodicBatchEntity')
|
||
|
|
WHERE JSON_EXTRACT(json, '$.trigger.type') = 'periodicBatchEntityWorkflow';
|