I\'m moving django website from one server to another, and I tried to syncdb, so i\'ve put python manage.py syncdb
, and i get this output:
Synci
This might help others going through the same issue.
Since your database is to be created now and there are no migrations needed, after doing what Ahmad mentioned, also do a fake migration so south will mark all migration scripts as already run. In short, run these.
syncdb --all
migrate --fake
Please note that if you already have data in your database you shouldn't use syncdb --all.