(feat) Users can now be created.

Having issues with fetching users; switch to sqlx?

Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
Louis Hollingworth 2023-10-26 12:58:06 +01:00
parent cf80d4b70d
commit f267d6b285
Signed by: lucxjo
GPG key ID: A11415CB3DC7809B
7 changed files with 470 additions and 42 deletions

View file

@ -12,6 +12,7 @@ CREATE TABLE users (
pass VARCHAR NOT NULL,
created_at TIMESTAMP NOT NULL DEFAULT NOW(),
updated_at TIMESTAMP NOT NULL DEFAULT NOW(),
main_fedi TEXT
main_fedi TEXT,
UNIQUE(username, epost)
);
SELECT diesel_manage_updated_at('users');