mm-auth-service/sql/V6__Create_org_mapping_table.sql

13 lines
416 B
MySQL
Raw Normal View History

2025-07-25 11:00:13 +00:00
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';