mirror of
https://github.com/logto-io/logto.git
synced 2025-01-06 20:40:08 -05:00
10 lines
254 B
MySQL
10 lines
254 B
MySQL
|
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)
|
||
|
);
|