mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-09 01:58:53 +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';
|