tags:

views:

262

answers:

1

i am getting

orm:schema-tool => The supplied configuration uses the annotation metadata driver. The 'class-dir' argument is required for this driver.

when i try to follow the doctrine 2.0 alpha (i know its alpha) mini tutorial

i am on windows 7 x64, wamp 2. i ran

php.exe doctrine.php orm:schema-tool --create
+3  A: 

From within the same directory:

php.exe doctrine orm:schema-tool --create --class-dir=./Entities
Eric