From c7bd665068e98031ec0899e6a0057101f0358bac Mon Sep 17 00:00:00 2001 From: Kevin Frantz Date: Tue, 30 Oct 2018 20:34:12 +0100 Subject: [PATCH] Solved schema bug --- application/src/Entity/Source/AbstractSource.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/src/Entity/Source/AbstractSource.php b/application/src/Entity/Source/AbstractSource.php index 35ceb7f..f4085b1 100644 --- a/application/src/Entity/Source/AbstractSource.php +++ b/application/src/Entity/Source/AbstractSource.php @@ -47,7 +47,7 @@ abstract class AbstractSource extends AbstractEntity implements SourceInterface protected $groups; /** - * @ORM\OneToOne(targetEntity="Law",cascade={"persist", "remove"}) + * @ORM\OneToOne(targetEntity="App\Entity\Meta\Law",cascade={"persist", "remove"}) * @ORM\JoinColumn(name="law_id", referencedColumnName="id") * * @var LawInterface