Refs #27910 -- Doc'd support for enumeration types serialization in migrations.

This commit is contained in:
Mariusz Felisiak 2019-09-24 13:03:40 +02:00
parent bc46e386c7
commit aad46ee274
1 changed files with 1 additions and 0 deletions

View File

@ -678,6 +678,7 @@ Django can serialize the following:
- :func:`functools.partial` and :class:`functools.partialmethod` instances - :func:`functools.partial` and :class:`functools.partialmethod` instances
which have serializable ``func``, ``args``, and ``keywords`` values. which have serializable ``func``, ``args``, and ``keywords`` values.
- ``LazyObject`` instances which wrap a serializable value. - ``LazyObject`` instances which wrap a serializable value.
- Enumeration types (e.g. ``TextChoices`` or ``IntegerChoices``) instances.
- Any Django field - Any Django field
- Any function or method reference (e.g. ``datetime.datetime.today``) (must be in module's top-level scope) - Any function or method reference (e.g. ``datetime.datetime.today``) (must be in module's top-level scope)
- Unbound methods used from within the class body - Unbound methods used from within the class body