File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -340,15 +340,16 @@ Here is the list of possible generation strategies:
340340
341341- ``AUTO `` (default): Tells Doctrine to pick the strategy that is
342342 preferred by the used database platform. The preferred strategies
343- are IDENTITY for MySQL, SQLite and MsSQL and SEQUENCE for Oracle
344- and PostgreSQL. This strategy provides full portability.
343+ are IDENTITY for MySQL, SQLite, MsSQL and SQL Anywhere and SEQUENCE
344+ for Oracle and PostgreSQL. This strategy provides full portability.
345345- ``SEQUENCE ``: Tells Doctrine to use a database sequence for ID
346346 generation. This strategy does currently not provide full
347- portability. Sequences are supported by Oracle and PostgreSql.
347+ portability. Sequences are supported by Oracle, PostgreSql and
348+ SQL Anywhere.
348349- ``IDENTITY ``: Tells Doctrine to use special identity columns in
349350 the database that generate a value on insertion of a row. This
350351 strategy does currently not provide full portability and is
351- supported by the following platforms: MySQL/SQLite
352+ supported by the following platforms: MySQL/SQLite/SQL Anywhere
352353 (AUTO\_ INCREMENT), MSSQL (IDENTITY) and PostgreSQL (SERIAL).
353354- ``TABLE ``: Tells Doctrine to use a separate table for ID
354355 generation. This strategy provides full portability.
@@ -391,7 +392,7 @@ besides specifying the sequence's name:
391392 </id >
392393 </entity >
393394 </doctrine-mapping >
394-
395+
395396 .. code-block :: yaml
396397
397398 Message :
You can’t perform that action at this time.
0 commit comments