OpenMetadata/bootstrap/sql/migrations/native/1.11.1/postgres/postDataMigrationSQLScript.sql

13 lines
348 B
SQL

UPDATE
classification
SET
json = json::jsonb || json_build_object(
'autoClassificationConfig', json_build_object(
'enabled', true,
'conflictResolution', 'highest_priority',
'minimumConfidence', 0.6,
'requireExplicitMatch', true
)
)::jsonb
WHERE
json->>'name' = 'PII';