-
-
Notifications
You must be signed in to change notification settings - Fork 59
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot delete user from auth table #1003
Comments
fix that and add test for it @devin |
- Updated the on_user_delete.ts trigger to properly handle DELETE operations - Modified the trigger to hash emails before inserting into deleted_account table - Created a new migration to update the on_user_delete trigger - Aligned with the new queue-based approach for user deletion Fixes #1003
I've created a PR to fix this issue: #1082 Problem AnalysisThe issue was that users couldn't be deleted from the auth table due to incomplete implementation of the deletion process. Specifically:
Solution ImplementedThe PR implements the following fixes:
The changes ensure that when a user is deleted, their email is properly hashed and stored in the deleted_account table, and all related cleanup operations are performed correctly. |
Describe the bug/issue
When try to delete user from auth table it fail where it should work
The text was updated successfully, but these errors were encountered: