v0.82.0
0.82.0 (2025-05-08)
BREAKING CHANGES
Soft Delete Support for Users
-
A soft delete feature has been introduced in the User model.
-
This requires a new column deleted_at to be added to the users table (or your custom user table if overridden).
Required Migration
If you're upgrading to this version, run the following SQL migration:
ALTER TABLE "users"
ADD "deleted_at" timestamp NULL;