aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/AnnotationBundle
diff options
context:
space:
mode:
authorJeremy Benoist <jeremy.benoist@gmail.com>2016-10-01 09:26:32 +0200
committerJeremy Benoist <jeremy.benoist@gmail.com>2016-10-22 13:13:06 +0200
commit206bade58a279d7f2e34c2dbada10366b90d2d6b (patch)
tree6c5fc1fe65dfa9e661a09b3fd92253f2931b84de /src/Wallabag/AnnotationBundle
parente8331dd9e7772a396bb211459eca4a682c8e947e (diff)
downloadwallabag-206bade58a279d7f2e34c2dbada10366b90d2d6b.tar.gz
wallabag-206bade58a279d7f2e34c2dbada10366b90d2d6b.tar.zst
wallabag-206bade58a279d7f2e34c2dbada10366b90d2d6b.zip
Add ability to reset some datas
- annotations - tags - entries
Diffstat (limited to 'src/Wallabag/AnnotationBundle')
-rw-r--r--src/Wallabag/AnnotationBundle/Entity/Annotation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/AnnotationBundle/Entity/Annotation.php b/src/Wallabag/AnnotationBundle/Entity/Annotation.php
index c48d8731..0838f5aa 100644
--- a/src/Wallabag/AnnotationBundle/Entity/Annotation.php
+++ b/src/Wallabag/AnnotationBundle/Entity/Annotation.php
@@ -82,7 +82,7 @@ class Annotation
82 * @Exclude 82 * @Exclude
83 * 83 *
84 * @ORM\ManyToOne(targetEntity="Wallabag\CoreBundle\Entity\Entry", inversedBy="annotations") 84 * @ORM\ManyToOne(targetEntity="Wallabag\CoreBundle\Entity\Entry", inversedBy="annotations")
85 * @ORM\JoinColumn(name="entry_id", referencedColumnName="id") 85 * @ORM\JoinColumn(name="entry_id", referencedColumnName="id", onDelete="cascade")
86 */ 86 */
87 private $entry; 87 private $entry;
88 88