cron, db, cache and migrations

This commit is contained in:
2022-02-13 18:09:26 +01:00
parent 5f36bdb8a6
commit e03efbf09c
8 changed files with 1638 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
create table users(
id serial primary key,
email varchar(320) not null,
password_hash varchar(256) not null
);
---- create above / drop below ----
drop table users;