Remove 'description' from newsletter templates, it's not used anymore

[MAILPOET-2647]
This commit is contained in:
Jan Jakeš
2020-03-06 13:35:29 +01:00
committed by Veljko V
parent 196fb6794c
commit e9ae4df4bc
7 changed files with 3 additions and 21 deletions

View File

@@ -36,12 +36,6 @@ class NewsletterTemplateEntity {
*/
private $categories = '[]';
/**
* @ORM\Column(type="string")
* @var string
*/
private $description = '';
/**
* @ORM\Column(type="json")
* @Assert\NotBlank()
@@ -91,14 +85,6 @@ class NewsletterTemplateEntity {
$this->categories = $categories;
}
public function getDescription(): string {
return $this->description;
}
public function setDescription(string $description) {
$this->description = $description;
}
/**
* @return array|null
*/