summaryrefslogtreecommitdiff
path: root/docs/ref/models
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2011-09-10 20:06:10 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2011-09-10 20:06:10 +0000
commit8d6c2517315660fbf9e69ae6b7595f33a10e5e43 (patch)
tree87533aeb8567bc0770addc7abc0c050f40bd45ee /docs/ref/models
parentdafb4951a7ff191f1b41146ca46b4cc662212997 (diff)
Fixed #16592 -- More test changes and documentation to account for MySQL's casual relationship with sanity. Thanks to Jim Dalton for the report and patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16787 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/ref/models')
-rw-r--r--docs/ref/models/options.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ref/models/options.txt b/docs/ref/models/options.txt
index cf1b3f97e4..010d93d9a3 100644
--- a/docs/ref/models/options.txt
+++ b/docs/ref/models/options.txt
@@ -61,6 +61,13 @@ If your database table name is an SQL reserved word, or contains characters that
aren't allowed in Python variable names -- notably, the hyphen -- that's OK.
Django quotes column and table names behind the scenes.
+.. admonition:: Use lowercase table names for MySQL
+
+ It is strongly advised that you use lowercase table names when you override
+ the table name via ``db_table``, particularly if you are using the MySQL
+ backend. See the :ref:`MySQL notes <mysql-notes>` for more details.
+
+
``db_tablespace``
-----------------