mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-09 18:21:23 +00:00
6 lines
181 B
MySQL
6 lines
181 B
MySQL
![]() |
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;
|