[DB][FOLLOW] Change Follow table

This commit is contained in:
Hugo Sales
2020-08-15 07:06:33 +00:00
committed by Hugo Sales
parent 65a129aac6
commit be83d3532e
2 changed files with 12 additions and 24 deletions

View File

@@ -43,7 +43,6 @@ class Follow extends Entity
private int $follower;
private int $followed;
private ?string $uri;
private DateTimeInterface $created;
private DateTimeInterface $modified;
@@ -69,17 +68,6 @@ class Follow extends Entity
return $this->followed;
}
public function setUri(?string $uri): self
{
$this->uri = $uri;
return $this;
}
public function getUri(): ?string
{
return $this->uri;
}
public function setCreated(DateTimeInterface $created): self
{
$this->created = $created;