django migration No migrations to apply
Django keeps track of all the applied migrations in django_migrations
table.
So just delete all the rows in the django_migrations
table that are related to you app like:
DELETE FROM django_migrations WHERE app='your-app-name';
and then do:
python manage.py makemigrations
python manage.py migrate