mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-23 09:22:18 +00:00
Fix Migration SQL , not executing from Handle (#15873)
* Fix Migration SQL , not executing from Handle * fix
This commit is contained in:
parent
0c3e580592
commit
ed7fa24c39
@ -21,7 +21,7 @@ SET json = jsonb_set(
|
||||
'{system}',
|
||||
json->'systemApp'
|
||||
) - 'systemApp'
|
||||
WHERE json ? 'systemApp';
|
||||
WHERE jsonb_exists(json::jsonb, 'systemApp') = true;
|
||||
|
||||
UPDATE apps_marketplace
|
||||
SET json = jsonb_set(
|
||||
@ -29,4 +29,4 @@ SET json = jsonb_set(
|
||||
'{system}',
|
||||
json->'systemApp'
|
||||
) - 'systemApp'
|
||||
WHERE json ? 'systemApp';
|
||||
WHERE jsonb_exists(json::jsonb, 'systemApp') = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user