Fix incorrect association for CharacterViewpoint::scene. Many viewpoints can be at the same scene.

This commit is contained in:
Austen McDonald
2016-09-16 05:27:21 +00:00
parent 9ea46b0af3
commit 5b0dcb701b
+1 -1
View File
@@ -28,7 +28,7 @@ class CharacterViewpoint implements CreateableInterface
private $attachments = [];
/** @Column(type="array") */
private $data = [];
/** @OneToOne(targetEntity="Scene") */
/** @ManyToOne(targetEntity="Scene") */
private $scene;
/** @var array */