fullstack: added profile pictures/avatars to accounts and improved settings page layout

This commit is contained in:
2026-01-11 18:04:24 +01:00
parent 52a6231d0b
commit b512f9d65f
3 changed files with 104 additions and 14 deletions

View File

@@ -3,6 +3,7 @@ CREATE TABLE IF NOT EXISTS user_ (
uuid UUID UNIQUE,
email TEXT UNIQUE,
username TEXT NOT NULL UNIQUE,
avatar_url TEXT,
password_hash TEXT NOT NULL
);