mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
9 lines
260 B
MySQL
9 lines
260 B
MySQL
|
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)
|
||
|
);
|