Jan Walraven
DevOps



Categories:
  • Arduino (2)
  • CSS (3)
  • Docker (11)
  • ESXi (1)
  • Git (4)
  • Google Cloud (3)
  • Javascript (6)
  • Kubernetes (4)
  • Linux (36)
  • Mac (7)
  • Magento (4)
  • Mysql (14)
  • PHP (9)
  • Zend framework 2 (9)
  • Posted on July 22, 2013

    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