lemmy/server/migrations/2019-02-26-002946_create_user/up.sql
Dessalines c786464381 Adding forum / community pages
- Adding main forum page. Fixes #11
- Adding view version for posts. #21
- Got rid of fedi user ids. Fixes #22
- Post sorting working. Fixes #24
2019-04-02 23:49:32 -07:00

15 lines
399 B
SQL

create table user_ (
id serial primary key,
name varchar(20) not null,
fedi_name varchar(40) not null,
preferred_username varchar(20),
password_encrypted text not null,
email text unique,
icon bytea,
published timestamp not null default now(),
updated timestamp,
unique(name, fedi_name)
);
insert into user_ (name, fedi_name, password_encrypted) values ('admin', 'TBD', 'TBD');