Hi,
I'm pretty used to Django. With Django you define your models for the ORM and it takes care of generating / altering the database itself for storing the data based on the models.
In php i'm looking for a similar solution. Doctrine seems to be the standard php ORM, but, as far as I've seen, you have to write the DB and then attach to it, or script the database creation, then generate the models and start working.
Is there a one step model definition to db creation with Doctrine or another php orm solution? Thanks.