From eceff885cf78cb1acd0e87e64e137d77cacef033 Mon Sep 17 00:00:00 2001 From: Marcel Hernandez Date: Wed, 22 Jun 2016 00:57:51 +0200 Subject: [PATCH] due to a longstanding bug in Doctrine DBAL (https://github.com/doctrine/dbal/issues/990) you must set the database software version in the config.yml file. --- app/config/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/app/config/config.yml b/app/config/config.yml index b3a87b1..572f1af 100644 --- a/app/config/config.yml +++ b/app/config/config.yml @@ -46,6 +46,7 @@ doctrine: dbname: "%database_name%" user: "%database_user%" password: "%database_password%" + server_version: '9.5' orm: auto_generate_proxy_classes: "%kernel.debug%"