feat: lots of timeline improvements; icon urls for users

This commit is contained in:
nullishamy 2025-05-02 00:46:04 +01:00
parent 41c0091e98
commit a924415a74
Signed by: amy
SSH key fingerprint: SHA256:WmV0uk6WgAQvDJlM8Ld4mFPHZo02CLXXP5VkwQ5xtyk
15 changed files with 379 additions and 43 deletions

View file

@ -9,6 +9,7 @@ CREATE TABLE IF NOT EXISTS user
username TEXT NOT NULL,
actor_id TEXT NOT NULL UNIQUE,
display_name TEXT NOT NULL,
icon_url TEXT NOT NULL,
FOREIGN KEY(actor_id) REFERENCES actor(id)
);