From 2e2921690aa8b9558d7d958b460b497cf762cfd8 Mon Sep 17 00:00:00 2001 From: Javier Spagnoletti Date: Sat, 5 Sep 2015 15:40:37 -0300 Subject: [PATCH] Updated docs for basic mapping Added note about UUID identifier generator strategy, which was added in 2.3 version: 0a83560 --- docs/en/reference/basic-mapping.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/en/reference/basic-mapping.rst b/docs/en/reference/basic-mapping.rst index 4ece67666..d8dc95848 100644 --- a/docs/en/reference/basic-mapping.rst +++ b/docs/en/reference/basic-mapping.rst @@ -354,6 +354,8 @@ Here is the list of possible generation strategies: strategy does currently not provide full portability and is supported by the following platforms: MySQL/SQLite/SQL Anywhere (AUTO\_INCREMENT), MSSQL (IDENTITY) and PostgreSQL (SERIAL). +- ``UUID``: Tells Doctrine to use the built-in Universally Unique Identifier + generator. This strategy provides full portability. - ``TABLE``: Tells Doctrine to use a separate table for ID generation. This strategy provides full portability. ***This strategy is not yet implemented!***