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
331 B
SQL
7 lines
No EOL
331 B
SQL
UPDATE workflow_definition_entity
|
|
SET json = jsonb_set(json, '{trigger,type}', '"eventBasedEntity"')
|
|
fixWHERE json->'trigger'->>'type' = 'eventBasedEntityTrigger';
|
|
|
|
UPDATE workflow_definition_entity
|
|
SET json = jsonb_set(json, '{trigger,type}', '"periodicBatchEntity"')
|
|
WHERE json->'trigger'->>'type' = 'periodicBatchEntityTrigger'; |