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

77 Views Asked by At

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

1

There are 1 best solutions below

2
catavaran On BEST ANSWER

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.