diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-11-09 16:31:59 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-11-09 16:31:59 +0100 |
commit | f1eccfd63f214dcc730ab0d18a694a5465f425db (patch) | |
tree | e6cbd355f3a360e5619821fb1415ee26a01f11ce /src/Wallabag/UserBundle | |
parent | 4529d0f4b6b20cbbd1ccb5339a753aff7d35552b (diff) | |
parent | 53cf5106891fc64f3f66cb6b3316654a9620239c (diff) | |
download | wallabag-f1eccfd63f214dcc730ab0d18a694a5465f425db.tar.gz wallabag-f1eccfd63f214dcc730ab0d18a694a5465f425db.tar.zst wallabag-f1eccfd63f214dcc730ab0d18a694a5465f425db.zip |
Merge pull request #1500 from wallabag/v2-quote-pgsql
Fix quote strategy for reserved keyword in Postgres
Diffstat (limited to 'src/Wallabag/UserBundle')
-rw-r--r-- | src/Wallabag/UserBundle/Entity/User.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/UserBundle/Entity/User.php b/src/Wallabag/UserBundle/Entity/User.php index d2efd200..e3b9a519 100644 --- a/src/Wallabag/UserBundle/Entity/User.php +++ b/src/Wallabag/UserBundle/Entity/User.php | |||
@@ -19,7 +19,7 @@ use Wallabag\CoreBundle\Entity\Tag; | |||
19 | * User. | 19 | * User. |
20 | * | 20 | * |
21 | * @ORM\Entity(repositoryClass="Wallabag\UserBundle\Repository\UserRepository") | 21 | * @ORM\Entity(repositoryClass="Wallabag\UserBundle\Repository\UserRepository") |
22 | * @ORM\Table | 22 | * @ORM\Table(name="`user`") |
23 | * @ORM\HasLifecycleCallbacks() | 23 | * @ORM\HasLifecycleCallbacks() |
24 | * @ExclusionPolicy("all") | 24 | * @ExclusionPolicy("all") |
25 | * | 25 | * |