- Delete the sqlite database file (often
db.sqlite3) in your django project folder (or wherever you placed it) - Delete everything except
__init__.pyfile frommigrationfolder in all django apps (eg:rm */migrations/0*.py) - Make changes in your models (
models.py). - Run the command
python manage.py makemigrationsorpython3 manage.py makemigrations - Then run the command
python manage.py migrate.
That’s all.
If your changes to the models are not detected by makemigrations command, please check this answer