diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index f04b883..9873d47 100644
|
a
|
b
|
The Django adapter is currently only available in the Dev branch.
|
| 305 | 305 | |
| 306 | 306 | .. _release branches: http://dev.mysql.com/downloads/connector/python/ |
| 307 | 307 | |
| | 308 | .. _mysql-time-zone-defintions: |
| | 309 | |
| | 310 | Time zone definitions |
| | 311 | --------------------- |
| | 312 | |
| | 313 | If you plan on using Django's :doc:`timezone support </topics/i18n/timezones>`, |
| | 314 | use `mysql_tzinfo_to_sql`_ to load time zone tables into the MySQL database. |
| | 315 | This needs to be done just once for your MySQL server, not per database. |
| | 316 | |
| | 317 | .. _mysql_tzinfo_to_sql: http://dev.mysql.com/doc/refman/5.5/en/mysql-tzinfo-to-sql.html |
| | 318 | |
| 308 | 319 | Creating your database |
| 309 | 320 | ---------------------- |
| 310 | 321 | |
diff --git a/docs/topics/i18n/timezones.txt b/docs/topics/i18n/timezones.txt
index 5e3a482..c637601 100644
|
a
|
b
|
Troubleshooting
|
| 649 | 649 | >>> local.date() |
| 650 | 650 | datetime.date(2012, 3, 3) |
| 651 | 651 | |
| | 652 | 4. **I get an error** "``Are time zone definitions for your database and pytz |
| | 653 | installed?``" **pytz is installed, so I guess the problem is my database?** |
| | 654 | |
| | 655 | If you are using MySQL, see the :ref:`mysql-time-zone-defintions` section |
| | 656 | of the MySQL notes for instructions on loading time zone definitions. |
| | 657 | |
| 652 | 658 | Usage |
| 653 | 659 | ----- |
| 654 | 660 | |