This is not a package related error.
You are getting such error because you migrations are not properly done or your migrations are missing some files.
This issue may be solved by running migrations.
python manage.py makemigrationspython manage.py migrate
If the problem persists, try running:
python manage.py migrate --run-syncdb
Do not forget to run python manage.py makemigrations before running --run-syncdb
This is not a package related error. You are getting such error because you migrations are not properly done or your migrations are missing some files. This issue may be solved by running migrations.
python manage.py makemigrations
python manage.py migrate
If the problem persists, try running:
python manage.py migrate --run-syncdb
Do not forget to runpython manage.py makemigrations
before running--run-syncdb