Commit e3a64d54 authored by Stephane Bouvry's avatar Stephane Bouvry
Browse files

Update module.config.php

parent a73c4f3e
Loading
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@ return [
    'doctrine' => [
        'connection' => [
            'orm_default' => [
                'driverClass' => \Doctrine\DBAL\Driver\PDOPgSql\Driver::class,
                'driverClass' => '\Doctrine\DBAL\Driver\PDO\PgSQL\Driver',
                'params' => [
                    'host' => 'db',        //
                    'user' => 'admin',     // cf. docker-compose.yml
@@ -17,6 +17,7 @@ return [
                    'dbname' => 'demo',    //
                    'port' => '5432',
                    'charset' => 'utf8',
                    'driver' => 'pdo_pgsql',
                    'driverOptions' => [1002 => 'SET NAMES utf8']
                ],
            ],