When in Symfony I am trying to create the database via doctrine:database:create it throws the following exception:
[Doctrine\DBAL\Exception\ConnectionException]
An exception occured in driver: SQLSTATE[08006] [7] FATAL: database "tm_ootb" does not exist
Am I facing a bug or am I missing something in the configuration.
Here is my dbal config:
dbal:
driver: pdo_pgsql
host: "%database_host%"
port: "%database_port%"
dbname: "%database_name%"
user: "%database_user%"
password: "%database_password%"
charset: UTF8
Thanks