Running migrations for a single app in django
I have several apps in my Django project. How do I migrate the changes of only a particluar app to my database?.
Admin
2022-05-10
To migrate specifc apps in django, specify the app name after the makemigrations and migrate command e.g let's say you want to migrate an app named blog. All you have to do is specify the app name when you run makemigrations and migrate commands in the terminal as show below
python manage.py makemigrations blog
Then after that run
python manage.py migrate blog
Add Message
Click on the button below to add a new message to this thread
Tags
Thread detail
Satus: Open
Messages: 1Started: 2022-05-10Thread Create
Click the button below to start a new thread for your question
loading..
Privacy Policy
By using our website,
you agree that devmaesters can store cookies on your device and disclose information in accordance with our privacy policy.