mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-12 19:48:26 +00:00

* Add looker test connection step * Add looker test connection step * Update Credentials * Fix explore link and add bitbucket reader * Format * Fix test * Fix spline linting * Fix import
10 lines
483 B
SQL
10 lines
483 B
SQL
-- we are not using the secretsManagerCredentials
|
|
UPDATE metadata_service_entity
|
|
SET json = json::jsonb #- '{openMetadataServerConnection.secretsManagerCredentials}'
|
|
where name = 'OpenMetadata';
|
|
|
|
-- Rename githubCredentials to gitCredentials
|
|
UPDATE dashboard_service_entity
|
|
SET json = jsonb_set(json, '{connection,config,gitCredentials}', json#>'{connection,config,githubCredentials}')
|
|
where serviceType = 'Looker'
|
|
and json#>'{connection,config,githubCredentials}' is not null; |