Concept Flow - makemigrations and migrate commands
Write or change models.py
Run: python manage.py makemigrations
Create migration files
Run: python manage.py migrate
Apply migrations to database
Database schema updated
This flow shows how changes in Django models create migration files, which are then applied to update the database schema.