Skip to content
Snippets Groups Projects
Commit 5d6f19b7 authored by Fabrice Gangler's avatar Fabrice Gangler :art:
Browse files

feat(software): add [ old_comptoir_id ] property

parent 7402ef95
No related branches found
No related tags found
No related merge requests found
......@@ -31,6 +31,9 @@ class Software
#[ORM\Column]
private ?\DateTimeImmutable $updated_at = null;
#[ORM\Column(nullable: true, unique: true)]
private ?int $old_comptoir_id = null;
public function getId(): ?int
{
return $this->id;
......@@ -107,4 +110,16 @@ public function setUpdatedAt(\DateTimeImmutable $updated_at): static
return $this;
}
public function getOldComptoirId(): ?int
{
return $this->old_comptoir_id;
}
public function setOldComptoirId(?int $old_comptoir_id): static
{
$this->old_comptoir_id = $old_comptoir_id;
return $this;
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment