diff options
| author | Tim Graham <timograham@gmail.com> | 2013-12-26 15:50:33 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-12-26 15:50:33 -0500 |
| commit | d8d83777ebbe15af7587a24698435555ba3bb842 (patch) | |
| tree | 4f6ad1af0992ce8545521d96f82864f2f0702856 /docs/ref | |
| parent | 8779aa806e6b5442e60c111f9d5d6874a026e001 (diff) | |
Fixed #21629 -- Added instructions for loading MySQL time zone definitions.
Thanks Aymeric for the suggestion.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/databases.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index f04b8830f7..f7c4f0f9fb 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -305,6 +305,17 @@ The Django adapter is currently only available in the Dev branch. .. _release branches: http://dev.mysql.com/downloads/connector/python/ +.. _mysql-time-zone-definitions: + +Time zone definitions +--------------------- + +If you plan on using Django's :doc:`timezone support </topics/i18n/timezones>`, +use `mysql_tzinfo_to_sql`_ to load time zone tables into the MySQL database. +This needs to be done just once for your MySQL server, not per database. + +.. _mysql_tzinfo_to_sql: http://dev.mysql.com/doc/refman/5.5/en/mysql-tzinfo-to-sql.html + Creating your database ---------------------- |
