How do you handle database migrations in Django?
In Django, database migrations are handled using Django’s migration framework, which allows changes to the database schema without manually altering the database. Migrations track model changes, such as adding or modifying fields, and apply them systematically. When a model is created or updated, running python manage.py makemigrations ge