I make changes to a model and I want to apply these changes to the DB. django code example
Example: how to create migrations in django
//to create migration files
python manage.py makemigrations
//to migrate migration files
python manage.py migrate