[Answered ]-Django: Using south on project with existing migration files

2👍

I usually use ./manage.py syncdb --migrate and it does not throw that kind of error.

Are you sure that none of you other apps use a table with the same name?

You can checkout which tables your app wants to create by opening a django shell and doing sth like:

./manage.py sql YourAppName

👤simme

Leave a comment