Currently within Symfony Flex projects doctrine configuration is like: ``` doctrine: dbal: url: '%env(DATABASE_URL)%' ``` Where this ```DATABASE_URL``` env is eg. ```mysql://root@127.0.0.1:3306/symfony?charset=utf8mb4&serverVersion=5.7``` With this database creations won't work as expected because of https://github.com/liuggio/fastest/blob/master/adapters/Doctrine/DBAL/ConnectionFactory.php#L27-L31