feat: add delete property on Event

This commit is contained in:
Maël Gangloff
2024-09-01 21:26:07 +02:00
parent 0b4fc8b061
commit f36116afa9
7 changed files with 83 additions and 10 deletions

View File

@@ -100,9 +100,9 @@ class Domain
#[Groups(['domain:item'])]
private ?Tld $tld = null;
#[ORM\Column]
#[ORM\Column(nullable: false)]
#[Groups(['domain:item'])]
private ?bool $deleted = null;
private ?bool $deleted;
public function __construct()
{