OpenMetadata/bootstrap/sql/migrations/native/1.7.0/postgres/postDataMigrationSQLScript.sql
2025-01-27 18:03:54 +00:00

8 lines
329 B
SQL

UPDATE workflow_definition_entity
SET json = jsonb_set(json, '{trigger,type}', '"eventBasedEntity"')
WHERE json->'trigger'->>'type' = 'eventBasedEntityTrigger';
UPDATE workflow_definition_entity
SET json = jsonb_set(json, '{trigger,type}', '"periodicBatchEntity"')
WHERE json->'trigger'->>'type' = 'periodicBatchEntityTrigger';