diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-11-29 02:05:32 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-11-29 02:05:32 +0000 |
| commit | de7a336486f83dd9c01b8c2fd3feb014da7f5a49 (patch) | |
| tree | fba329fd52d04cf10ad72cc6c7d5797c03b605df /docs | |
| parent | 539e5af17cce18b1e09f485f4acf5c5a2a6a6279 (diff) | |
Fixed #460 -- Added 'django-admin.py inspectdb' support for SQLite. Thanks, Swaroop
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1484 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/django-admin.txt | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt index a8dff6defa..79cf4521ca 100644 --- a/docs/django-admin.txt +++ b/docs/django-admin.txt @@ -86,8 +86,9 @@ customizations. In particular, you'll need to do this: * Add ``primary_key=True`` to one field in each model. The ``inspectdb`` doesn't yet introspect primary keys. -``inspectdb`` only works with PostgreSQL and MySQL. Foreign-key detection only -works in PostgreSQL. +``inspectdb`` works with PostgreSQL, MySQL and SQLite. Foreign-key detection +only works in PostgreSQL. In SQLite, it cannot detect column types; it'll +use ``TextField`` for each column. install [modelmodule modelmodule ...] ------------------------------------- |
