mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-22 21:33:04 +00:00
6 lines
408 B
SQL
6 lines
408 B
SQL
-- Fix emailConfiguration templates field for users affected by v1.8.0 bug
|
|
-- See commit: https://github.com/open-metadata/OpenMetadata/commit/a50cddf665544b0934ce79a539aecbb00bd541c8
|
|
-- This migration ensures all emailConfiguration records have the correct 'openmetadata' value
|
|
UPDATE openmetadata_settings
|
|
SET json = jsonb_set(json, '{templates}', '"openmetadata"')
|
|
WHERE configType = 'emailConfiguration'; |