May 22, 2025
How to make database schema related changes in Django?
In Django there is two commands which help to do database schema related changes first is makemigrations and second is migrate.
By using makemigrations command we can create database migrations, using database schema mentioned models in Django. makemigrations command is mentioned below
python manage.py makemigrations
Once we are done with making migrations we can apply those with the help of migrate command. It makes the database related changes. migrate command is mentioned below
python manage.py migrate