mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 12:05:01 +00:00
c438f0fef1
- Login and Register mostly working. - Starting to work on creating communities.
10 lines
255 B
SQL
10 lines
255 B
SQL
create table user_ (
|
|
id serial primary key,
|
|
name varchar(20) not null unique,
|
|
preferred_username varchar(20),
|
|
password_encrypted text not null,
|
|
email text unique,
|
|
icon bytea,
|
|
published timestamp not null default now(),
|
|
updated timestamp
|
|
)
|