Opened 15 years ago
Closed 15 years ago
#11417 closed (fixed)
Error in 'Notes about supported databases' documentation
Reported by: | vorushin | Owned by: | nobody |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
http://docs.djangoproject.com/en/dev/ref/databases/#collation-settings
Should you decide to use utf8_bin collation for some of your tables with MySQLdb 1.2.1p2, you should still use utf8_collation_ci_swedish (the default) collation for the django.contrib.sessions.models.Session table (usually called django_session and the table django.contrib.admin.models.LogEntry table (usually called django_admin_log). Those are the two standard tables that use TextField internally.
and the _table_ django.contrib.admin.models.LogEntry _table_ (usually called django_admin_log).
It seems one of 'table's is redundant
(In [11169]) Fixed #11417 -- Corrected typo in MySQL collation notes. Thanks to vorushin for the report.