Symfony2 Generate Doctrine Entities from .yml files

doctrine-ormsymfony

So I have an existing database but I was unable to follow the steps outlined here: http://symfony.com/doc/current/cookbook/doctrine/reverse_engineering.html because some of my tables have foreign keys for primary keys.

My solution has been to create a copy of the database without foreign key constraints and generate the .yaml files from THAT first.

So now I have XXX.orm.yml files in ./src/My/MainBundle/Resources/config/doctrine/metadata/orm

Next I tried to turn these .yml files into Entity classes with annotations by using this command:
php app/console doctrine:mapping:import MyMainBundle annotation
However that ignores my .yml files. It either generates the generic classes from my database without foreign keys, or it throws an error if I use it on my real database. It never even looks at my .yml files.

So all I want to know, is how can I transform the *.orm.yml files to Entities?

Best Answer

I'm not 100% sure if this is all I had to do to fix it, but I think the solution was as simple as moving my .orm.yml files from

./src/My/MainBundle/Resources/config/doctrine/metadata/orm

to

./src/My/MainBundle/Resources/config/doctrine

and running

php app/console doctrine:mapping:import MyMainBundle annotation --path="./src"