diff --git a/bootstrap/sql/migrations/native/1.3.0/mysql/schemaChanges.sql b/bootstrap/sql/migrations/native/1.3.0/mysql/schemaChanges.sql index a9b94bd1c30..50d6aff17f8 100644 --- a/bootstrap/sql/migrations/native/1.3.0/mysql/schemaChanges.sql +++ b/bootstrap/sql/migrations/native/1.3.0/mysql/schemaChanges.sql @@ -167,4 +167,7 @@ where serviceType = 'Mssql'; DELETE FROM event_subscription_entity; DELETE FROM change_event_consumers; -DELETE FROM consumers_dlq; \ No newline at end of file +DELETE FROM consumers_dlq; + +UPDATE ingestion_pipeline_entity SET json = JSON_SET(json, '$.provider', 'user') +WHERE JSON_EXTRACT(json, '$.name') = 'OpenMetadata_dataInsight'; \ No newline at end of file diff --git a/bootstrap/sql/migrations/native/1.3.0/postgres/schemaChanges.sql b/bootstrap/sql/migrations/native/1.3.0/postgres/schemaChanges.sql index b33dffc9d21..1089b255a5b 100644 --- a/bootstrap/sql/migrations/native/1.3.0/postgres/schemaChanges.sql +++ b/bootstrap/sql/migrations/native/1.3.0/postgres/schemaChanges.sql @@ -180,3 +180,6 @@ where serviceType = 'Mssql'; DELETE FROM event_subscription_entity; DELETE FROM change_event_consumers; DELETE FROM consumers_dlq; + +UPDATE ingestion_pipeline_entity SET json = JSONB_SET(json::jsonb, '{provider}', '"user"', true) +WHERE json->>'name' = 'OpenMetadata_dataInsight'; \ No newline at end of file