mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-30 19:36:41 +00:00
4 lines
189 B
MySQL
4 lines
189 B
MySQL
![]() |
-- Update the relation between table and dataContract to 0 (CONTAINS)
|
||
|
UPDATE entity_relationship
|
||
|
SET relation = 0
|
||
|
WHERE fromEntity = 'table' AND toEntity = 'dataContract' AND relation = 10;
|