Agregar SoftDeleteable en un Entity en Smyfony
Ir a la navegación
Ir a la búsqueda
<?php namespace App\Entity; use App\Repository\UserRepository; use Doctrine\ORM\Mapping as ORM; use Gedmo\Mapping\Annotation as Gedmo; use Gedmo\SoftDeleteable\Traits\SoftDeleteable; #[ORM\Entity(repositoryClass: UserRepository::class)] #[ORM\Table(name: '`user`')] #[Gedmo\SoftDeleteable] class User { use SoftDeleteable; #[ORM\Id] #[ORM\GeneratedValue] #[ORM\Column] private ?int $id = null; ...
Migración
php bin/console make:migration php bin/console doctrine:migrations:migrate