[Fixed]-Why there is no migrations detected but I just created new migrations?

1👍

There’s another table that keeps track of which migrations have been ran for each app, django_migrations. You’ll have to reset that in order for django to know you have started over.

if you changed the database already then try running


python manage.py migrate <app> --fake zero

Leave a comment