2023-01-28 12:29:47 +08:00
|
|
|
/* init_order = 2 */
|
|
|
|
|
2022-11-24 11:09:03 +08:00
|
|
|
create table scopes (
|
2023-01-19 20:27:01 +08:00
|
|
|
tenant_id varchar(21) not null
|
|
|
|
references tenants (id) on update cascade on delete cascade,
|
2022-11-24 11:09:03 +08:00
|
|
|
id varchar(21) not null,
|
2023-01-19 20:27:01 +08:00
|
|
|
resource_id varchar(21) not null
|
|
|
|
references resources (id) on update cascade on delete cascade,
|
2022-11-24 11:09:03 +08:00
|
|
|
name varchar(256) not null,
|
2024-03-20 14:31:35 +08:00
|
|
|
description text,
|
2022-11-24 11:09:03 +08:00
|
|
|
created_at timestamptz not null default(now()),
|
2023-01-19 20:27:01 +08:00
|
|
|
primary key (id),
|
|
|
|
constraint scopes__resource_id_name
|
|
|
|
unique (tenant_id, resource_id, name)
|
2022-11-24 11:09:03 +08:00
|
|
|
);
|
2023-01-10 13:15:48 +08:00
|
|
|
|
2023-01-19 20:27:01 +08:00
|
|
|
create index scopes__id
|
|
|
|
on scopes (tenant_id, id);
|