Doctrine :: Windows :: How to generate Doctrine models on windows?

How to generate Doctrine models from a database on windows? (I work with zend studio and zend framework)

+3
source share
2 answers

There is a good script command line for this task called doctrine(among others). You can run it by calling php doctrine [params]from the command line or creating your own .bat, based on this shell script.

Take a look at the Doctrine Sandbox Dock and the Doctrine Guide.

+2
source

php doctrine build-schemais a command to use. See also takehin answer.

+1
source

Source: https://habr.com/ru/post/1745642/


All Articles