mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-12-18 11:07:41 +00:00
17 lines
395 B
MySQL
17 lines
395 B
MySQL
|
|
-- DataInsightsApplication should not allow configuration
|
||
|
|
update apps_marketplace
|
||
|
|
set json = JSON_INSERT(
|
||
|
|
JSON_REMOVE(json, '$.allowConfiguration'),
|
||
|
|
'$.allowConfiguration',
|
||
|
|
false
|
||
|
|
)
|
||
|
|
where name = 'DataInsightsApplication';
|
||
|
|
|
||
|
|
update installed_apps
|
||
|
|
set json = JSON_INSERT(
|
||
|
|
JSON_REMOVE(json, '$.allowConfiguration'),
|
||
|
|
'$.allowConfiguration',
|
||
|
|
false
|
||
|
|
)
|
||
|
|
where name = 'DataInsightsApplication';
|