views:

265

answers:

2

Hi, How generate Doctrine Models from database on windows? (I working with zend studio and zend framework)

+1  A: 

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

Take a look at Doctrine Sandbox package and Doctrine manual for details.

takeshin
+1  A: 

php doctrine build-schema is the command to use. See takeshin's answer too.

Coronatus