OpenMetadata/bootstrap/sql/migrations/native/1.10.0/postgres/postDataMigrationSQLScript.sql
2025-09-25 16:04:18 +05:30

12 lines
417 B
SQL

-- Migration script to restructure Databricks connection configuration
-- Move 'token' field from connection.config.token to connection.config.authType.token
UPDATE dbservice_entity
SET json = jsonb_set(
json #- '{connection,config,token}',
'{connection,config,authType}',
jsonb_build_object('token', json #> '{connection,config,token}'),
true
)
WHERE serviceType in ('Databricks', 'UnityCatalog');