From 44a4037466f3f2db02ce191f05faa3230c17e910 Mon Sep 17 00:00:00 2001 From: Luke Plant Date: Tue, 1 Nov 2011 22:27:02 +0000 Subject: [PATCH] Fixed #17129 - Model FAQ: Link to south Thanks to guettli for report and initial patch git-svn-id: http://code.djangoproject.com/svn/django/trunk@17066 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/faq/models.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/faq/models.txt b/docs/faq/models.txt index 6699bfe2be..c9f1a03fb1 100644 --- a/docs/faq/models.txt +++ b/docs/faq/models.txt @@ -50,10 +50,11 @@ option to reset the SQL for a particular application:: This drops any tables associated with ``appname`` and recreates them. If you do care about deleting data, you'll have to execute the ``ALTER TABLE`` -statements manually in your database. That's the way we've always done it, -because dealing with data is a very sensitive operation that we've wanted to -avoid automating. That said, there's some work being done to add partially -automated database-upgrade functionality. +statements manually in your database. + +There are `external projects which handle schema updates +`_, of which the current +defacto standard is `south `_. Do Django models support multiple-column primary keys? ------------------------------------------------------