Reputation: 41
i'm trying to generate a single entity from my database using symfony2 but i need a way to target one table to generate the YML file :
i have tried this
php app/console doctrine:mapping:import --force AcmeBlogBundle yml
but it does not i got all yml from all table in my doctrine folder
Upvotes: 0
Views: 135
Reputation: 774
php app/console doctrine:mapping:import --force AcmeBlogBundle:YOURENTITYNAME yml
Upvotes: 0