summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-07-07 04:06:00 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-07-07 04:06:00 +0000
commit49e5f5450d732a5d08c21c7e712e1728c6e635ce (patch)
tree113aabc834d3ff7c473379c8774c1217681c81c5 /docs
parent84dda1990f95e9cd99258ba19f8c0edfd5efb402 (diff)
Fixed #2272 -- Improved SQLite database introspection. Thanks, dne@mayonnaise.net
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3285 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/django-admin.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index 3334ae4530..04d86aa3b4 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -126,8 +126,9 @@ you run it, you'll want to look over the generated models yourself to make
customizations. In particular, you'll need to rearrange models' order, so that
models that refer to other models are ordered properly.
-Primary keys are automatically introspected for PostgreSQL and MySQL, in which
-case Django puts in the ``primary_key=True`` where needed.
+Primary keys are automatically introspected for PostgreSQL, MySQL and
+SQLite, in which case Django puts in the ``primary_key=True`` where
+needed.
``inspectdb`` works with PostgreSQL, MySQL and SQLite. Foreign-key detection
only works in PostgreSQL and with certain types of MySQL tables.