From 3a80896173c8deb9cf82d1e916a678730b33573f Mon Sep 17 00:00:00 2001 From: Wil Moore III Date: Fri, 8 Apr 2011 10:44:55 -0700 Subject: [PATCH] Changed registerDoctrineTypeMapping('enum', 'varchar'); to registerDoctrineTypeMapping('enum', 'string'); as 'string' is the correct type to map to whereas varchar is only an alias. --- en/cookbook/mysql-enums.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/cookbook/mysql-enums.rst b/en/cookbook/mysql-enums.rst index 0e6e388df..b8cef7b21 100644 --- a/en/cookbook/mysql-enums.rst +++ b/en/cookbook/mysql-enums.rst @@ -34,7 +34,7 @@ will even detect this match correctly when using SchemaTool update commands. getConnection(); - $conn->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'varchar'); + $conn->getDatabasePlatform()->registerDoctrineTypeMapping('enum', 'string'); In this case you have to ensure that each varchar field that is an enum in the database only gets passed the allowed values. You can easily enforce this in your