Diferencia entre revisiones de «Instalar y configurar SoftDeleteable en Symfony»
Ir a la navegación
Ir a la búsqueda
Línea 22: | Línea 22: | ||
stof_doctrine_extensions: | stof_doctrine_extensions: | ||
orm: | |||
default: | |||
timestampable: true | |||
softdeleteable: true |
Revisión del 08:03 1 sep 2024
Instalar
composer require stof/doctrine-extensions-bundle
Configurar
Doctrine
Entramos en el archivo config/packages/doctrine.yaml
Agregamos lo siguiente:
doctrine: orm: auto_mapping: true filters: softdeleteable: class: Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter enabled: true
Stof doctrine extensions
stof_doctrine_extensions: orm: default: timestampable: true softdeleteable: true