mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
18 lines
537 B
SQL
18 lines
537 B
SQL
/* init_order = 2 */
|
|
|
|
create table scopes (
|
|
tenant_id varchar(21) not null
|
|
references tenants (id) on update cascade on delete cascade,
|
|
id varchar(21) not null,
|
|
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()),
|
|
primary key (id),
|
|
constraint scopes__resource_id_name
|
|
unique (tenant_id, resource_id, name)
|
|
);
|
|
|
|
create index scopes__id
|
|
on scopes (tenant_id, id);
|