Migrations:
- Change your models (in models.py).
- Run
python manage.py makemigrationsto create migrations for those changes - Check which migrations will be run with
python manage.py sqlmigrate polls <migration_number> - Run
python manage.py migrateto apply those changes to the database.