I had the same issue here. After having suffering for a few hours stuck, I figured out the reason. It's very basic.
We forgot to run the migrate commands.
To fix, run the below commands in order:
python manage.py migrate
python manage.py makemigrations
python manage.py migrate
While the error notification is not relavance but this fix the error anyway :v.
You can read further information about migration Here.