mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
9f23dbbb2a
* feat(schema): add roles table add roles table * fix(chema): ci fix ci fix * fix(cr): cr fix - rename userRoles to roleNames - rename role table colmn name * fix(ut): fix ut fix ut
5 lines
118 B
SQL
5 lines
118 B
SQL
create table roles (
|
|
name varchar(128) not null,
|
|
description varchar(128) not null,
|
|
primary key (name)
|
|
);
|