Está en la página 1de 1

CREAR ENTIDADES DESDE TABLES DOCTRINE

php bin/console doctrine:mapping:import MiBundle annotation


php bin/console doctrine:generate:entities MiBundle
CREAR TABLAS DESDE ENTIDADES DOCTRINE

php bin/console doctrine:generate:entity


php bin/console doctrine:schema:update --force
ACTUALIZAR ENTIDADES DESDE TABLES DOCTRINE

php bin/console doctrine:generate:entities


MiBundle\Entity\NombredeEntidad
CREAR FORMULARIO DE TABLAS DOCTRINE

php bin/console doctrine:generate:form MiBundle:MiEntidad

//crear paginación
composer require knplabs/knp-paginator-bundle

También podría gustarte