This repository has been archived on 2020-04-21. You can view files and clone it, but cannot push or open issues or pull requests.
lemmy/server/migrations/2019-02-26-002946_create_user/up.sql

9 lines
202 B
SQL

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()
)