Django: Beyond the SQL: Modifying models

  1. Cacheing
  2. Beyond the SQL
  3. Scripting Django

Django’s syncdb command only creates new models. It doesn’t update existing models. If you make a change to your model in models.py, you will also need to make a corresponding change to the database table for that model.

  1. Cacheing
  2. Beyond the SQL
  3. Scripting Django