diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index d367284..00d2f8c 100644
a
|
b
|
Furthermore, if you are using a version of MySQL prior to 5.0.3, all of those
|
362 | 362 | column types have a maximum length restriction of 255 characters, regardless |
363 | 363 | of whether ``unique=True`` is specified or not. |
364 | 364 | |
| 365 | DateTime fields |
| 366 | ~~~~~~~~~~~~~~~ |
| 367 | |
| 368 | MySQL does not have a timezone-aware column type. If an attempt is made to |
| 369 | store a timezone-aware ``datetime`` to a |
| 370 | :class:`~django.db.models.DateTimeField`, a ``ValueError`` is raised rather |
| 371 | than truncating data. |
| 372 | |
| 373 | |
365 | 374 | .. _sqlite-notes: |
366 | 375 | |
367 | 376 | SQLite notes |