From e12b3ad99dc119a21f478701c148ca6d42ab86bc Mon Sep 17 00:00:00 2001 From: Richard Date: Wed, 30 Jan 2013 15:32:13 +0100 Subject: [PATCH] * added extra configuration step to the readme for Symfony CLI users --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index f6f9f0c..e179650 100644 --- a/README.md +++ b/README.md @@ -131,6 +131,29 @@ e.g. `wordpress_cookie: ~` and `wordpress_form_login: ~` # ... + +6. When you're using the Symfony CLI, exclude the Wordpress tables by creating a default entitymanager + + # app/config/config.yml + + doctrine: + orm: + auto_generate_proxy_classes: %kernel.debug% + auto_mapping: true + +will become + + doctrine: + orm: + auto_generate_proxy_classes: %kernel.debug% + default_entity_manager: default + entity_managers: + default: + connection: default + mappings: + YourAppBundle: ~ + + Multiple Blogs With Multiple Entity Manager ===========================================