pythondjangosyncdb

Would it be ok to run "python manage.py syncdb" multiple times towards a database?


Would it be possible to run "python manage.py syncdb" mutiple times towards the database? Will it cause corruption?


Solution

  • You can run python manage.py syncdb as many times as you want without any database corruption. It does not alter any existing tables.

    Syncdb documentation.