mm-auth-service/sql/V6__Create_org_mapping_table.sql
2025-07-25 18:00:13 +07:00

13 lines
416 B
SQL

create table "organization_mappings" (
"id" char(36) not null primary key,
"organization_id" char(36) not null,
"gateway_id" bigint not null
);
comment on table "organization_mappings" is 'null';
create table "application_mappings" (
"id" char(36) not null primary key,
"application_id" char(36) not null,
"gateway_id" bigint not null
);
comment on table "application_mappings" is 'null';