When I try to delete a user from Django's built in auth app, I have this error:
django.db.utils.OperationalError: no such table: main.auth_user__old
I searched on the web and I found this question : Django - No such table: main.auth_user__old
So I updated Django and I am now using the version 3.2.4 (I am using sqlite). Then I tried to delete auth tables from the db but when I did a ptyhon manage.py makemigrations auth
, it told me that no changes were detected.
Also, I can't delete the whole database.
Does someone have an idea what I can do to fix this?