mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-01 20:04:52 +00:00

* fix change event handling for alerts * contract is deleted when asset is deleted * add support for custom properties * Update generated TypeScript types * handle suite index deletion * validate owner is not coming back if not requested --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
4 lines
189 B
SQL
4 lines
189 B
SQL
-- 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; |