Reputation: 22565
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.
Upvotes: 0
Views: 1452
Reputation: 50638
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.
Upvotes: 1