summaryrefslogtreecommitdiff
path: root/docs/howto/custom-model-fields.txt
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-03-17 20:03:07 -0400
committerTim Graham <timograham@gmail.com>2015-03-17 20:03:07 -0400
commitd9a30ed190d68a5450cba8b3cd26ef6bcd8a70ff (patch)
tree10de6e7c2bfc233e9b0cc70a98c4fb8b9b7af69c /docs/howto/custom-model-fields.txt
parent53d11c6821b7b347e0eeefb96168cc1861715a6b (diff)
Updated location of database backend data_types attribute in docs.
Diffstat (limited to 'docs/howto/custom-model-fields.txt')
-rw-r--r--docs/howto/custom-model-fields.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/howto/custom-model-fields.txt b/docs/howto/custom-model-fields.txt
index 35dfd4cb79..58c81a70f4 100644
--- a/docs/howto/custom-model-fields.txt
+++ b/docs/howto/custom-model-fields.txt
@@ -692,12 +692,12 @@ storing a string.
If :meth:`.get_internal_type` returns a string that is not known to Django for
the database backend you are using -- that is, it doesn't appear in
-``django.db.backends.<db_name>.creation.data_types`` -- the string will still be
-used by the serializer, but the default :meth:`~Field.db_type` method will
-return ``None``. See the documentation of :meth:`~Field.db_type` for reasons why
-this might be useful. Putting a descriptive string in as the type of the field
-for the serializer is a useful idea if you're ever going to be using the
-serializer output in some other place, outside of Django.
+``django.db.backends.<db_name>.base.DatabaseWrapper.data_types`` -- the string
+will still be used by the serializer, but the default :meth:`~Field.db_type`
+method will return ``None``. See the documentation of :meth:`~Field.db_type`
+for reasons why this might be useful. Putting a descriptive string in as the
+type of the field for the serializer is a useful idea if you're ever going to
+be using the serializer output in some other place, outside of Django.
.. _converting-model-field-to-serialization: