add: post image uploads (supporter)

This commit is contained in:
trisua 2025-05-11 14:27:55 -04:00
parent ba1f8ef063
commit 70965298b5
18 changed files with 455 additions and 50 deletions

View file

@ -10,5 +10,7 @@ CREATE TABLE IF NOT EXISTS posts (
likes INT NOT NULL,
dislikes INT NOT NULL,
-- other counts
comment_count INT NOT NULL
comment_count INT NOT NULL,
-- ...
uploads TEXT NOT NULL
)