mirror of
https://github.com/open-metadata/OpenMetadata
synced 2026-05-24 09:39:11 +00:00
7 lines
334 B
SQL
7 lines
334 B
SQL
-- use FQN instead of name for Test Connection Definition
|
|
ALTER TABLE test_connection_definition
|
|
ADD fullyQualifiedName VARCHAR(256) GENERATED ALWAYS AS (json ->> '$.fullyQualifiedName') NOT NULL,
|
|
DROP COLUMN name;
|
|
|
|
-- Since we are not deleting the test connection defs anymore, clean it up
|
|
TRUNCATE TABLE test_connection_definition;
|