mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
11 lines
191 B
SQL
11 lines
191 B
SQL
create table roles (
|
|
id varchar(21) not null,
|
|
name varchar(128) not null,
|
|
description varchar(128) not null,
|
|
primary key (id)
|
|
);
|
|
|
|
create unique index roles__name
|
|
on roles (
|
|
name
|
|
);
|