1👍
I think you are trying to reverse the migrations in the app auth
, try the following:
heroku run python manage.py migrate auth zero
The problem is that manage.py
is expecting a command, and auth
is not a command but a Django app.
Source:stackexchange.com