2
I made a change to the default auth of Django and my project is working properly but when I give git push Heroku master and then use the command Heroku run python Manage.py migrate to create my database and it gives the error:
Django.db.Migrations.exceptions.Nodenotfounderror: Migration Accounts.0001_initial dependencies Reference nonexis nt Parent Node ('auth', '0008_alter_user_username_max_length')
Does anyone know how to solve?
You are making makemigrations before migrate?
– Sidon
Good by what I know I don’t need to give a makemigrations on Heroku just migrate for bank creation
– imp
I refer to local makemigrations. See the answer and comments of that question, maybe I can help you.
– Sidon