vote up 0 vote down star
1

i have to work with an existing database (not managed with doctrine) and i want to use doctrine only for new tables in this db.

is there a way to tell doctrine to not drop the entire db on reload but only the models defined in the yaml file ?

flag

67% accept rate

1 Answer

vote up 0 vote down

Yes, surely you can use doctrine only for some tables(not all). And it won't drop all the other tables., unless you manually run

$manager->dropDatabases();

This is how you can start using Doctine for your new tables:

  1. Setup DB Connection

  2. Setup Doctrine's files/directory structure

  3. Use Command Line Interface in order to automatically generate all Doctrine models(and schema) based on DB tables(you can delete unncessesary models manually).

link|flag
the problem is that there's no command line option to build all (re)load without dropping existing database – gpilotino Oct 18 at 23:18
1  
@gpilotino: Don't Do That Then! Just build-schema, build-model etc. Or write a task to do what you need to do. – dland Oct 21 at 13:01
ok but still you cannot do this with command line (dropping all tables). finally i had to write some code to cycle on them. – gpilotino Oct 22 at 21:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.