Ticket #17129: south-in-faq.patch
File south-in-faq.patch, 939 bytes (added by , 13 years ago) |
---|
-
docs/faq/models.txt
51 51 This drops any tables associated with ``appname`` and recreates them. 52 52 53 53 If 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. 54 statements manually in your database. 58 55 56 There exists an external project, which handles schema updates: `south <http://south.aeracode.org/>`_. 57 It is the defacto standard and used by many developers. 58 59 59 Do Django models support multiple-column primary keys? 60 60 ------------------------------------------------------ 61 61