aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity/User.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2015-04-01 21:53:48 +0200
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2015-04-01 21:53:48 +0200
commitd6fa2f70ac3c798b28ce33c6c143f45c09c74062 (patch)
tree40769c29279d189dfe0dbb8aa513122f9172ebde /src/Wallabag/CoreBundle/Entity/User.php
parent1a93ee423b072ec3bcb0c437cbf9b488bdea245c (diff)
parent276a1e9d3fb7e83569d16bcb37a67607d4ace8be (diff)
downloadwallabag-d6fa2f70ac3c798b28ce33c6c143f45c09c74062.tar.gz
wallabag-d6fa2f70ac3c798b28ce33c6c143f45c09c74062.tar.zst
wallabag-d6fa2f70ac3c798b28ce33c6c143f45c09c74062.zip
Merge pull request #1165 from wallabag/v2-prefix-db
Prefix table
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity/User.php')
-rw-r--r--src/Wallabag/CoreBundle/Entity/User.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/User.php b/src/Wallabag/CoreBundle/Entity/User.php
index e75e3a83..1652170f 100644
--- a/src/Wallabag/CoreBundle/Entity/User.php
+++ b/src/Wallabag/CoreBundle/Entity/User.php
@@ -13,8 +13,8 @@ use JMS\Serializer\Annotation\Expose;
13/** 13/**
14 * User 14 * User
15 * 15 *
16 * @ORM\Table(name="user")
17 * @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\UserRepository") 16 * @ORM\Entity(repositoryClass="Wallabag\CoreBundle\Repository\UserRepository")
17 * @ORM\Table
18 * @ORM\HasLifecycleCallbacks() 18 * @ORM\HasLifecycleCallbacks()
19 * @ExclusionPolicy("all") 19 * @ExclusionPolicy("all")
20 */ 20 */