Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Wrapping up lines
  • Loading branch information
klaussilveira committed Aug 20, 2013
commit d0932cad3a8305006763201663e07e84fac4fe18
6 changes: 4 additions & 2 deletions book/doctrine.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1425,8 +1425,10 @@ using. The following types are supported in Doctrine:
* ``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)
* ``simple_array`` (serialized using :phpfunction:`implode()` and :phpfunction:`explode()`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New in doctrine 2.3

with a comma as delimiter, and stored in a ``CLOB`` field)
* ``json_array`` (serialized using :phpfunction:`json_encode()` and :phpfunction:`json_decode()`,
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New in doctrine 2.3

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

the () shuld get removed from the phpfunction role

and stored in a ``CLOB`` field)
* ``blob`` (mapped to a resource stream)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New in doctrine 2.2

* ``guid``
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

New in doctrine 2.3


Expand Down