You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/db/schema/migrations/oss/postgres/45/03_targets.up.sql

22 lines
634 B

-- Copyright IBM Corp. 2020, 2026
-- SPDX-License-Identifier: BUSL-1.1
begin;
alter table target
add constraint iam_scope_project_fkey
foreign key (project_id)
references iam_scope_project (scope_id)
on delete cascade
on update cascade,
drop constraint target_scope_id_fkey
;
alter table session rename constraint session_target_id_fkey to target_fkey;
alter table target_host_set rename constraint target_host_set_target_id_fkey to target_fkey;
alter table target_tcp rename constraint target_tcp_public_id_fkey to target_fkey;
drop function target_scope_valid cascade;
commit;