0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-23 20:33:16 -05:00
logto/packages/schemas/tables/organization_role_scope_relations.sql
2023-10-07 17:49:28 +08:00

12 lines
640 B
SQL

/* init_order = 2 */
/** The relations between organization roles and organization scopes. It indicates which organization scopes are available to which organization roles. */
create table organization_role_scope_relations (
tenant_id varchar(21) not null
references tenants (id) on update cascade on delete cascade,
organization_role_id varchar(21) not null
references organization_roles (id) on update cascade on delete cascade,
organization_scope_id varchar(21) not null
references organization_scopes (id) on update cascade on delete cascade,
primary key (tenant_id, organization_role_id, organization_scope_id)
);