mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
9 lines
202 B
MySQL
9 lines
202 B
MySQL
|
create table user_ (
|
||
|
id serial primary key,
|
||
|
name varchar(20) not null,
|
||
|
password_encrypted varchar(200) not null,
|
||
|
email varchar(200),
|
||
|
icon bytea,
|
||
|
startTime timestamp not null default now()
|
||
|
)
|