mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
8 lines
260 B
SQL
8 lines
260 B
SQL
create table scopes (
|
|
id varchar(21) not null,
|
|
resource_id varchar(21) references resources (id) on update cascade on delete cascade,
|
|
name varchar(256) not null,
|
|
description text,
|
|
created_at timestamptz not null default(now()),
|
|
primary key (id)
|
|
);
|