### Description I am working on a new project in Symfony 5.3. I am using this command bin/console make:entity for creating entities. This wizard automatically creates an entity with $id as primary key of type integer. I am prefering UUID instead of integer. How I should change settings to get Entity like example? ### Example namespace App\Entity; use App\Repository\EventRepository; use Doctrine\ORM\Mapping as ORM; use Symfony\Bridge\Doctrine\IdGenerator\UuidGenerator; /** * @ORM\Entity(repositoryClass=EventRepository::class) */ class Event { /** * @ORM\Id * @ORM\Column(type="uuid", unique=true) * @ORM\GeneratedValue(strategy="CUSTOM") * @ORM\CustomIdGenerator(class=UuidGenerator::class) */ private $id; ... }