Ticket #17129: south-in-faq.patch

File south-in-faq.patch, 939 bytes (added by Thomas Güttler, 12 years ago)
  • docs/faq/models.txt

     
    5151This drops any tables associated with ``appname`` and recreates them.
    5252
    5353If you do care about deleting data, you'll have to execute the ``ALTER TABLE``
    54 statements manually in your database. That's the way we've always done it,
    55 because dealing with data is a very sensitive operation that we've wanted to
    56 avoid automating. That said, there's some work being done to add partially
    57 automated database-upgrade functionality.
     54statements manually in your database.
    5855
     56There exists an external project, which handles schema updates: `south <http://south.aeracode.org/>`_.
     57It is the defacto standard and used by many developers.
     58
    5959Do Django models support multiple-column primary keys?
    6060------------------------------------------------------
    6161
Back to Top