8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b376330 commit e2e8372Copy full SHA for e2e8372
book/doctrine.rst
@@ -1449,6 +1449,11 @@ using. The following types are supported in Doctrine:
1449
* ``object`` (serialized and stored in a ``CLOB`` field)
1450
* ``array`` (serialized and stored in a ``CLOB`` field)
1451
* ``blob`` (mapped to a resource stream)
1452
+ * ``simple_array`` (serialized using :phpfunction:`implode()` and :phpfunction:`explode()`,
1453
+ with a comma as delimiter, and stored in a ``CLOB`` field)
1454
+ * ``json_array`` (serialized using :phpfunction:`json_encode()` and :phpfunction:`json_decode()`,
1455
+ and stored in a ``CLOB`` field)
1456
+ * ``guid``
1457
1458
For more information, see Doctrine's `Mapping Types documentation`_.
1459
0 commit comments