summaryrefslogtreecommitdiff
path: root/docs/faq
diff options
context:
space:
mode:
authorLuke Plant <L.Plant.98@cantab.net>2011-11-01 22:27:02 +0000
committerLuke Plant <L.Plant.98@cantab.net>2011-11-01 22:27:02 +0000
commit44a4037466f3f2db02ce191f05faa3230c17e910 (patch)
tree2338d43919b42fdf22bd36302b1e65a7ac1e14b0 /docs/faq
parent6d39cb4119a0fa502fca1f9b3d07436fbd258655 (diff)
downloaddjango-44a4037466f3f2db02ce191f05faa3230c17e910.tar.gz
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
Diffstat (limited to 'docs/faq')
-rw-r--r--docs/faq/models.txt9
1 files 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
+<http://djangopackages.com/grids/g/database-migration/>`_, of which the current
+defacto standard is `south <http://south.aeracode.org/>`_.
Do Django models support multiple-column primary keys?
------------------------------------------------------