mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-16 13:41:37 +00:00
12 lines
375 B
SQL
12 lines
375 B
SQL
UPDATE dbservice_entity
|
|
SET json = JSON_REMOVE(json, '$.connection.config.username', '$.connection.config.password')
|
|
WHERE serviceType in ('Databricks');
|
|
|
|
CREATE TABLE IF NOT EXISTS openmetadata_settings (
|
|
id MEDIUMINT NOT NULL AUTO_INCREMENT,
|
|
configType VARCHAR(36) NOT NULL,
|
|
json JSON NOT NULL,
|
|
PRIMARY KEY (id, configType),
|
|
UNIQUE(configType)
|
|
);
|