Guest User

Untitled

a guest
Mar 9th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. # Doctrine Configuration
  2. doctrine:
  3. dbal:
  4. default_connection: A
  5. connections:
  6. A:
  7. driver: pdo_sqlsrv
  8. port: 1433
  9. host: A
  10. dbname: MADB
  11. user:
  12. password:
  13. charset: UTF8
  14. B:
  15. driver: pdo_sqlsrv
  16. host: B
  17. port: 1433
  18. dbname: MADB2
  19. user:
  20. password:
  21. charset: UTF8
  22.  
  23. orm:
  24. auto_generate_proxy_classes: "%kernel.debug%"
  25. default_entity_manager: B
  26. entity_managers:
  27. labete:
  28. naming_strategy: doctrine.orm.naming_strategy.underscore
  29. auto_mapping: false
  30. connection: A
  31. mappings:
  32. HMAdminBundle: ~
  33. HMMainBundle: ~
  34. main:
  35. naming_strategy: doctrine.orm.naming_strategy.underscore
  36. connection: B
  37. mappings:
  38. HMProfBundle: ~
  39. HMMainBundle: ~
  40. HMAdminBundle: ~
  41.  
  42. doctrine:schema:update --em=A
  43.  
  44. doctrine:schema:update --help
Add Comment
Please, Sign In to add comment