mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-05 08:05:28 +00:00
17 lines
345 B
MySQL
17 lines
345 B
MySQL
![]() |
-- DataInsightsApplication should not allow configuration
|
||
|
UPDATE apps_marketplace
|
||
|
SET json = jsonb_set(
|
||
|
json::jsonb,
|
||
|
'{allowConfiguration}',
|
||
|
to_jsonb(false)
|
||
|
)
|
||
|
where name = 'DataInsightsApplication';
|
||
|
|
||
|
UPDATE installed_apps
|
||
|
SET json = jsonb_set(
|
||
|
json::jsonb,
|
||
|
'{allowConfiguration}',
|
||
|
to_jsonb(false)
|
||
|
)
|
||
|
where name = 'DataInsightsApplication';
|