add urgent property to calendar entity

This commit is contained in:
2022-09-21 12:20:39 +02:00
parent 236e89a6ae
commit e90ff67e33
2 changed files with 38 additions and 0 deletions

View File

@@ -203,6 +203,11 @@ class Calendar implements TrackCreationInterface, TrackUpdateInterface
*/
private string $status = self::STATUS_VALID;
/**
* @ORM\Column(type="boolean", nullable=true)
*/
private ?bool $urgent = false;
public function __construct()
{
$this->comment = new CommentEmbeddable();