Jan Walraven
DevOps



Menu
Categories:
Posted on

After setting up Doctrine2 into your project, run the following commands to create entities from existing database.

convert-mapping


./vendor/doctrine/doctrine-module/bin/doctrine-module orm:convert-mapping --namespace="Example\Entity\" --force  --from-database annotation ./module/Example/src/

generate-entities (add getters and setters to the generated classes)


./vendor/doctrine/doctrine-module/bin/doctrine-module orm:generate-entities ./module/Example/src/ --generate-annotations=true