0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00
logto/packages/schemas/tables/users.sql

10 lines
254 B
MySQL
Raw Normal View History

2021-07-02 08:09:08 -05:00
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)
);