Reputation: 66
I'm trying to implement Google Login on my Django production website. It works fine on development server, but on my production server, I face this issue after having run python manage.py migrate
. I'm not sure what to do, I already tried deleting all the migrations and re-running makemigrations
and migrate
.
Upvotes: 0
Views: 305
Reputation: 224
showmigrations
to see which migrations are done.migrate
again.dbshell
or other shell depending on the database you're using.I would not recommend regenerating migration files just because there is some db issue.
Upvotes: 1