Load social work, and fix some repositories

This commit is contained in:
2021-07-30 23:42:30 +02:00
committed by Marc Ducobu
parent 8a962a4f1c
commit 0e2e7155fb
9 changed files with 623 additions and 427 deletions

View File

@@ -23,17 +23,20 @@ class Evaluation
private $title = [];
/**
* @ORM\Column(type="dateinterval", nullable=true)
* @ORM\Column(type="dateinterval", nullable=true, options={"default": null})
*/
private $delay;
/**
* @ORM\Column(type="dateinterval")
* @ORM\Column(type="dateinterval", nullable=true, options={"default": null})
*/
private $notificationDelay;
/**
* @ORM\ManyToOne(targetEntity=SocialAction::class)
* @ORM\ManyToOne(
* targetEntity=SocialAction::class,
* inversedBy="evaluations"
* )
*/
private $socialAction;