When I run python manage.py migrate on my Django project, I get the following error:
Traceback (most recent call last):
File \"manage.py\", line
Okay, before you do anything weird or nuclear, first just drop your database and rebuild it.
If using POsgres -
DROP SCHEMA public CASCADE;
CREATE SCHEMA PUBLIC;
Then just remake your migrations
./manage.py migrate
This is the most basic solution, which typically will clear things up. Don't just go remaking the migrations until absolutely neccessary.