symfony - updatng schema after changes in entity - Symfony2 / Doctrine2 -
i uploaded changed entity server , wanted update schema via php app/console doctrine:shema:update --dump-sql
. (i need change smallint longtext (simple_array type).) worked fine on test server, on productive server, after uploading changed entity, symfony tells me schema doesnt need updated. did forget?
do in production
app/console doctrine:shema:update --dump-sql -e prod
symfony executes console commands in dev env default, should specify prod
Comments
Post a Comment