c9579cb9ca
* Add initial database and server setup * Set up all routes, auth, etc * Implement sessions, password auth, hashing with argon2, and history storage
6 lines
233 B
SQL
6 lines
233 B
SQL
-- Your SQL goes here
|
|
create table users (
|
|
id bigserial primary key, -- also store our own ID
|
|
email varchar(128) not null unique, -- being able to contact users is useful
|
|
password varchar(128) not null unique
|
|
);
|