diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index 5188c10..10897f2 100644
a
|
b
|
needed.
|
366 | 366 | ``inspectdb`` works with PostgreSQL, MySQL and SQLite. Foreign-key detection |
367 | 367 | only works in PostgreSQL and with certain types of MySQL tables. |
368 | 368 | |
| 369 | Django doesn't create database defaults when a |
| 370 | :attr:`~django.db.models.Field.default` is specified on a model field. |
| 371 | Similarly, database defaults aren't translated to model field defaults or |
| 372 | detected in any fashion by ``inspectdb``. |
| 373 | |
369 | 374 | By default, ``inspectdb`` creates unmanaged models. That is, ``managed = False`` |
370 | 375 | in the model's ``Meta`` class tells Django not to manage each table's creation, |
371 | 376 | modification, and deletion. If you do want to allow Django to manage the |