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