mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
8 lines
No EOL
354 B
SQL
8 lines
No EOL
354 B
SQL
-- Rename customMetricsProfile to customMetrics
|
|
UPDATE profiler_data_time_series
|
|
SET json = REPLACE(json::text, '"customMetricsProfile"', '"customMetrics"')::jsonb;
|
|
|
|
-- Delete customMetricsProfile from entity_extension
|
|
-- This was not supported on the processing side before 1.3.
|
|
DELETE FROM entity_extension ee
|
|
where extension like '%customMetrics'; |