mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-05 08:05:28 +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';
|