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