In my git repo I have added two different heroku remotes to separate apps (named testheroku and officialheroku).
I am able to push to them separately by specifying their remote name (i.e. git push officialheroku master
) but when try to use heroku run python manage.py syncdb
it only runs syncdb for testheroku.
How do I make heroku run syncdb on officialheroku?
heroku --app heroku_app_name run python manage.py syncdb
– Stonge