Search code examples
djangodjango-syncdb

is running django syncdb in production, post initial deployment safe?


I read somewhere that you would never run syncdb on a database, post its initial run. Is this true?

I don't see what the problem could be. Do you?


Solution

  • running syncdb will not make changes to tables for any models already in the database (even if you have changed them).

    for managing changes to models, consider south