auto
This commit is contained in:
parent
4af65e72f7
commit
b27899aa73
|
@ -19,17 +19,17 @@ class Notification
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="string", length=191)
|
* @ORM\Column(type="string", length=191)
|
||||||
*/
|
*/
|
||||||
private $title;
|
private $title = "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="string", length=191)
|
* @ORM\Column(type="string", length=191)
|
||||||
*/
|
*/
|
||||||
private $data;
|
private $data = "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="string", length=191)
|
* @ORM\Column(type="string", length=191)
|
||||||
*/
|
*/
|
||||||
private $description;
|
private $description = "";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\ManyToOne(targetEntity="\App\Entity\User")
|
* @ORM\ManyToOne(targetEntity="\App\Entity\User")
|
||||||
|
@ -37,12 +37,12 @@ class Notification
|
||||||
private $user;
|
private $user;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="datetime")
|
* @ORM\Column(type="datetime", nullable=true)
|
||||||
*/
|
*/
|
||||||
private $deleted_at;
|
private $deleted_at;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @ORM\Column(type="datetime")
|
* @ORM\Column(type="datetime", nullable=true)
|
||||||
*/
|
*/
|
||||||
private $seen_at;
|
private $seen_at;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue