Currently I am learning django and learning migration related stuff.
I have found that we can migrate specific app using python manage.py migrate app-name
but not found how to migrate specific migration file named python manage.py migrate 0024_auto_20200827_0706.py
.
If I will do python manage.py migrate 0024_auto_20200827_0706.py
, it will revert migration from this point or file but not doing migrate for this specific file.
My question : is it possible to do migrate for specific file if yes then How is it possible?
Thanks.