mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
10 lines
241 B
SQL
10 lines
241 B
SQL
create table user_ (
|
|
id serial primary key,
|
|
name varchar(20) not null,
|
|
preferred_username varchar(20),
|
|
password_encrypted text not null,
|
|
email text,
|
|
icon bytea,
|
|
published timestamp not null default now(),
|
|
updated timestamp
|
|
)
|