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/scopes.sql

19 lines
537 B
MySQL
Raw Normal View History

2023-01-27 23:29:47 -05:00
/* init_order = 2 */
create table scopes (
2023-01-19 07:27:01 -05:00
tenant_id varchar(21) not null
references tenants (id) on update cascade on delete cascade,
id varchar(21) not null,
2023-01-19 07:27:01 -05:00
resource_id varchar(21) not null
references resources (id) on update cascade on delete cascade,
name varchar(256) not null,
description text not null,
created_at timestamptz not null default(now()),
2023-01-19 07:27:01 -05:00
primary key (id),
constraint scopes__resource_id_name
unique (tenant_id, resource_id, name)
);
2023-01-19 07:27:01 -05:00
create index scopes__id
on scopes (tenant_id, id);