diff --git a/book/doctrine.rst b/book/doctrine.rst index a91c3368f7c..facd8c1e2d1 100644 --- a/book/doctrine.rst +++ b/book/doctrine.rst @@ -1418,12 +1418,19 @@ using. The following types are supported in Doctrine: * ``date`` * ``time`` * ``datetime`` + * ``datetimetz`` * **Other Types** * ``boolean`` * ``object`` (serialized and stored in a ``CLOB`` field) * ``array`` (serialized and stored in a ``CLOB`` field) + * ``simple_array`` (serialized using :phpfunction:`implode()` and :phpfunction:`explode()`, + with a comma as delimiter, and stored in a ``CLOB`` field) + * ``json_array`` (serialized using :phpfunction:`json_encode()` and :phpfunction:`json_decode()`, + and stored in a ``CLOB`` field) + * ``blob`` (mapped to a resource stream) + * ``guid`` For more information, see Doctrine's `Mapping Types documentation`_.