mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-11-11 08:23:40 +00:00
8 lines
165 B
MySQL
8 lines
165 B
MySQL
|
|
-- Add runtime: enabled for AutoPilot
|
||
|
|
UPDATE apps_marketplace
|
||
|
|
SET json = JSON_SET(
|
||
|
|
json,
|
||
|
|
'$.runtime.enabled',
|
||
|
|
true
|
||
|
|
)
|
||
|
|
WHERE name = 'AutoPilotApplication';
|