2023-10-07 04:49:28 -05:00
|
|
|
/* init_order = 1 */
|
|
|
|
|
|
|
|
/** The scopes (permissions) defined by the organization template. */
|
|
|
|
create table organization_scopes (
|
|
|
|
tenant_id varchar(21) not null
|
|
|
|
references tenants (id) on update cascade on delete cascade,
|
|
|
|
/** The globally unique identifier of the organization scope. */
|
|
|
|
id varchar(21) not null,
|
|
|
|
/** The organization scope's name, unique within the organization template. */
|
|
|
|
name varchar(128) not null,
|
|
|
|
/** A brief description of the organization scope. */
|
2023-10-08 00:47:22 -05:00
|
|
|
description varchar(256),
|
2023-10-07 04:49:28 -05:00
|
|
|
primary key (id),
|
|
|
|
constraint organization_scopes__name
|
|
|
|
unique (tenant_id, name)
|
|
|
|
);
|
|
|
|
|
|
|
|
create index organization_scopes__id
|
|
|
|
on organization_scopes (tenant_id, id);
|