fix: update table scheme

This commit is contained in:
Maël Gangloff
2024-07-13 15:52:52 +02:00
parent 5faa6489b1
commit 69dc301257
9 changed files with 71 additions and 96 deletions

View File

@@ -15,9 +15,6 @@ class Nameserver
#[ORM\Column(length: 255)]
private ?string $ldhName = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $handle = null;
/**
* @var Collection<int, NameserverEntity>
*/
@@ -48,18 +45,6 @@ class Nameserver
return $this;
}
public function getHandle(): ?string
{
return $this->handle;
}
public function setHandle(string $handle): static
{
$this->handle = $handle;
return $this;
}
/**
* @return Collection<int, NameserverEntity>
*/