mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-03 23:26:54 +00:00

eventBasedEntityWorkflow -> eventBasedEntity periodicBatchEntityWorkflow -> periodicBatchEntity
7 lines
346 B
SQL
7 lines
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'; |