I made a spelling error in my model and now one of my columns is misspelled. I\'d like to drop all tables in the database, fix the error in the model.py, and recreate the da
Removes the database.
Removes the migrations from your app.
Re-runs the migrations. Note: you could also do: python manage.py makemigrations my-app
Migrate changes.