6
it seems you already have the fields in your database for that app. try faking the migrations by running
heroku run python manage.py migrate app --fake
1
do this on Heroku:
heroku run python manage.py migrate YOUR_APP_NAME 0001 –fake
then
heroku run python manage.py migrate YOUR_APP
that solved it for me. Just running migrate would give errors as for some reason south would try to run the initial migration as well. So I faked that one, and running the first actual migration (0002) worked fine after.
- [Django]-How to create new tables in Database for each day in Django
- [Django]-Finding the cause of of 403 forbidden error in django admin
- [Django]-Django signals redirect
- [Django]-Django: In django-tables2 how to modify the way URLField gets rendered
Source:stackexchange.com