tags:

views:

317

answers:

1

Hi,

is it possible to generate models from db, but only specified tables in doctrine?

I can't locate a method in Doctrine_Core class for this.

Thanks.

+1  A: 

From the command line should work:

doctrine-cli generate-models-yaml path/to.yml

Look into the Doctrine_Cli class, it should have specified method.

takeshin