diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 9ea0fe7..ae47667 100644
a
|
b
|
store a timezone-aware ``time`` or ``datetime`` to a
|
372 | 372 | :class:`~django.db.models.TimeField` or :class:`~django.db.models.DateTimeField` |
373 | 373 | respectively, a ``ValueError`` is raised rather than truncating data. |
374 | 374 | |
| 375 | MySQL does not store fractions of seconds. Fractions of seconds are truncated |
| 376 | to zero when the time is stored. |
| 377 | |
375 | 378 | Row locking with ``QuerySet.select_for_update()`` |
376 | 379 | ------------------------------------------------- |
377 | 380 | |