v0.87.0
0.87.0 (2025-07-21)
Features
upload / remove user photo (#988) (f94e89d)
-
This requires a new column photo_id to be added to the users table (or your custom users table if overridden).
-
add
s3.bucketconfig to upload user photo to desired bucket. if the bucket is not specified the photo won't get uploaded.
Required Migration
If you're upgrading to this version, run the following SQL migration:
ALTER TABLE "users"
ADD "photo_id" INTEGER NULL,
ADD CONSTRAINT fk_users_photo
FOREIGN KEY (photo_id)
REFERENCES files(id);