What is the quickest way create yaml file from mysql database table schema?
So, I have a mysql database structure already created. I want to dump it in yaml format a put it into “config/doctrine/schema.yaml” and after that i want to run “php symfony doctrine:build-schema” (symfony 1.4).
I am missing part where i need to dump table structure into yaml format. What is the quickest way to do it?
Thanks for any help
Check out the Doctrine CLI. The generate-yaml-db option lets you…