Remember last login

This commit is contained in:
2021-12-06 20:38:55 +00:00
parent 1437fc7b8d
commit e3cf69ab08
5 changed files with 40 additions and 9 deletions

View File

@ -9,7 +9,8 @@ CREATE TABLE users (
id uuid DEFAULT uuid_generate_v4() PRIMARY KEY,
email text NOT NULL,
name text NOT NULL,
password text NOT NULL
password text NOT NULL,
last_login timestamp with time zone
);
CREATE TABLE user_budgets (