mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-10 18:49:00 +00:00
8 lines
357 B
MySQL
8 lines
357 B
MySQL
![]() |
-- Rename customMetricsProfile to customMetrics
|
||
|
UPDATE profiler_data_time_series
|
||
|
SET json = REPLACE(json, '"customMetricsProfile"', '"customMetrics"');
|
||
|
|
||
|
-- Delete customMetricsProfile from entity_extension
|
||
|
-- This was not supported on the processing side before 1.3.
|
||
|
DELETE FROM openmetadata_db.entity_extension ee
|
||
|
where extension like '%customMetrics';
|