kayue / WordpressBundle

THIS PROJECT IS DEPRECATED AND WILL NOT BE MAINTAINED ANYMORE.
48 stars 14 forks source link

Entities are read by Symfony CLI #15

Closed rvanlaak closed 11 years ago

rvanlaak commented 11 years ago

To keep my database in sync, I make use of the CLI command

 app/console doctrine:schema:update --dump-sql

Since this bundle contains Wordpress entities (which is great), the CLI also reads those entities by default. This can be solved by the use of a specific entitymanager-configuration, as described here: http://symfony.com/doc/current/cookbook/doctrine/multiple_entity_managers.html

So, please update the installation process in the README.md :) Users need to change their Symfony config.yml. Suggestion:

orm:
    auto_generate_proxy_classes: %kernel.debug%
    auto_mapping: true

will become

orm:
    auto_generate_proxy_classes: %kernel.debug%
    default_entity_manager:   default
    entity_managers:
        default:
            connection:       default
            mappings:
                YourAppBundle: ~
mrtorrent commented 11 years ago

Hi, please send a pull request with wording you feel would be suitable. On Jan 30, 2013 9:03 AM, "Rvanlaak" notifications@github.com wrote:

To keep my database in sync, I make use of the CLI command

app/console doctrine:schema:update --dump-sql

Since this bundle contains Wordpress entities (which is great), the CLI also reads those entities by default. This can be solved by the use of a specific entitymanager-configuration, as described here: http://symfony.com/doc/current/cookbook/doctrine/multiple_entity_managers.html

So, please update the installation process in the README.md :) Users need to change their Symfony config.yml. Suggestion:

orm: auto_generate_proxy_classes: %kernel.debug% auto_mapping: true

will become

orm: auto_generate_proxy_classes: %kernel.debug% default_entity_manager: default entity_managers: default: connection: default mappings: YourAppBundle: ~

— Reply to this email directly or view it on GitHubhttps://github.com/kayue/WordpressBundle/issues/15.