mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
9 lines
254 B
SQL
9 lines
254 B
SQL
create table users (
|
|
id varchar(24) not null,
|
|
user_name varchar(128) unique,
|
|
primary_email varchar(128) unique,
|
|
primary_phone varchar(128) unique,
|
|
password_encrypted varchar(128),
|
|
password_encryption_method varchar(32),
|
|
primary key (id)
|
|
);
|