mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
9 lines
299 B
SQL
9 lines
299 B
SQL
UPDATE team_entity
|
|
SET json = JSON_INSERT(json, '$.teamType', 'Department');
|
|
|
|
ALTER TABLE team_entity
|
|
ADD teamType VARCHAR(64) GENERATED ALWAYS AS (json ->> '$.teamType') NOT NULL;
|
|
|
|
UPDATE dbservice_entity
|
|
SET json = JSON_REMOVE(json, '$.connection.config.database')
|
|
WHERE serviceType = 'DynamoDB';
|