Home > Enterprise >  local migrations not showing up on heroku
local migrations not showing up on heroku

Time:12-18

I know this question has been asked before however, my issue is a bit different from those problems. I am working on a project and added a few attributes to different models in different apps and I did migrations gradually. and everything worked fine. I created a PR on a forked public branch and my client merged my branch into a testing branch.

Now the issue is that Heroku is not recognizing the migrations on the remote server.

I am using sqlite3 on my local development environment and PostgreSQL on the production environment.

Is Heroku serving the sqlite3 or PostgreSQL on production? or what can be the main issue?

NOTE : I am added as a collaborator and can't pull the local changes to the remote server and hence can't deploy the local changes to remote server.

UPDATE

the result of git remote -v

heroku  https://git.heroku.com/tarot-testing.git (fetch)
heroku  https://git.heroku.com/tarot-testing.git (push)
master  https://github.com/abubakarA-Dot/tarot_juicer.git (fetch)
master  https://github.com/abubakarA-Dot/tarot_juicer.git (push)
origin  https://github.com/abubakarA-Dot/tarot_juicer.git (fetch)
origin  https://github.com/abubakarA-Dot/tarot_juicer.git (push)
upstream        https://github.com/enoren5/tarot_juicer.git (fetch)
upstream        https://github.com/enoren5/tarot_juicer.git (push)

CodePudding user response:

@djangodeveloper and I are on the same team working on the same enter image description here

  • Related