mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-04 15:45:42 +00:00
7 lines
330 B
MySQL
7 lines
330 B
MySQL
![]() |
UPDATE workflow_definition_entity
|
||
|
SET json = jsonb_set(json, '{trigger,type}', '"eventBasedEntity"')
|
||
|
WHERE json->'trigger'->>'type' = 'eventBasedEntityWorkflow';
|
||
|
|
||
|
UPDATE workflow_definition_entity
|
||
|
SET json = jsonb_set(json, '{trigger,type}', '"periodicBatchEntity"')
|
||
|
WHERE json->'trigger'->>'type' = 'periodicBatchEntityWorkflow';
|