mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-12 08:52:38 +00:00
8 lines
166 B
MySQL
8 lines
166 B
MySQL
|
|
-- Add runtime: enabled for AutoPilot
|
||
|
|
UPDATE apps_marketplace
|
||
|
|
SET json = jsonb_set(
|
||
|
|
json::jsonb,
|
||
|
|
'{runtime,enabled}',
|
||
|
|
'true'
|
||
|
|
)
|
||
|
|
where name = 'AutoPilotApplication';
|