[Answered ]-How do I successfully integrate a second database with Django South?

2👍

Whenever I have modified the table models I used south and these commands to modify the structure and they always worked:

python manage.py convert_to_south "your_app"
python manage.py migrate "your_app"

I recommend running these commands after running syncdb, so your tables are created.

Leave a comment