1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Added missing backticks to function names.

This commit is contained in:
Mariusz Felisiak
2022-03-17 11:10:03 +01:00
committed by GitHub
parent ba298a32b3
commit 39ae8d740e
7 changed files with 14 additions and 13 deletions

View File

@@ -976,12 +976,12 @@ every time you change the schema.
Additionally, like the rest of Django's old ``syncdb`` code, ``initial_data``
has been started down the deprecation path and will be removed in Django 1.9.
deconstruct() and serializability
---------------------------------
``deconstruct()`` and serializability
-------------------------------------
Django now requires all Field classes and all of their constructor arguments
to be serializable. If you modify the constructor signature in your custom
Field in any way, you'll need to implement a deconstruct() method;
Field in any way, you'll need to implement a ``deconstruct()`` method;
we've expanded the custom field documentation with :ref:`instructions
on implementing this method <custom-field-deconstruct-method>`.