From bec7a21517d4fbf947932d2bd36fa8403564ae00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20B=C3=B6hmer?= Date: Mon, 25 Mar 2019 22:03:52 +0100 Subject: [PATCH] Use escaped name for groups. This fixes an exception on some MySQL servers. --- src/Entity/Group.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Entity/Group.php b/src/Entity/Group.php index 08ae4116..723d2aba 100644 --- a/src/Entity/Group.php +++ b/src/Entity/Group.php @@ -36,7 +36,7 @@ use Doctrine\ORM\Mapping as ORM; * This entity represents an user group. * * @ORM\Entity() - * @ORM\Table("groups") + * @ORM\Table("`groups`") */ class Group extends StructuralDBElement implements HasPermissionsInterface {