Home > Mobile >  Problem with terminal while doctrine:create:database
Problem with terminal while doctrine:create:database

Time:06-17

I've got a problem with doctrine. I've configured well my .env file, like that:

DATABASE_URL="mysql://root:[email protected]:8888/tuto"

and then in the console I put:

symfony console doctrine:database:create

but then it does not display anything, the console loads and that's it

Can anyone helps me ? thanks in advance guys :)

CodePudding user response:

DATABASE_URL="mysql://root:[email protected]:8888/tuto?serverVersion=8.0&charset=utf8mb4"

This is a right syntax i think, put your serverVersion and charset

  • Related