mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-07 09:09:30 +00:00
4 lines
200 B
MySQL
4 lines
200 B
MySQL
![]() |
-- Update the tableau data model enum
|
||
|
UPDATE dashboard_data_model_entity
|
||
|
SET json = JSON_SET(json, '$.dataModelType', 'TableauDataModel')
|
||
|
WHERE JSON_EXTRACT(json, '$.dataModelType') = 'TableauSheet';
|