I have successfully synchronized my database using south on the local server. I have problems with the south in Hereka. When i started
git add app/migrations/*
git commit -m 'adding new migrations'
heroku run python manage.py migrate app
I get a DatabaseError. A relationship field already exists.
Any ideas why this is not working? Also, do I need to migrate locally and in the production environment every time one of my models changes? Thanks for reading.
source
share