mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-08 09:39:02 +00:00
4 lines
197 B
MySQL
4 lines
197 B
MySQL
![]() |
-- Update the tableau data model enum
|
||
|
UPDATE dashboard_data_model_entity
|
||
|
SET json = JSONB_SET(json::jsonb, '{dataModelType}', '"TableauDataModel"')
|
||
|
WHERE json#>'{dataModelType}' = '"TableauSheet"';
|