1Delete the sqlite database file (often db.sqlite3) in your django project folder (or wherever you placed it)
2Delete everything except __init__.py file from migration folder in all django apps
3Make changes in your models (models.py).
4Run the command python manage.py makemigrations or python3 manage.py makemigrations
5Then run the command python manage.py migrate.