Use escaped name for groups. This fixes an exception on some MySQL servers.

This commit is contained in:
Jan Böhmer 2019-03-25 22:03:52 +01:00
parent 007250db0e
commit bec7a21517

View file

@ -36,7 +36,7 @@ use Doctrine\ORM\Mapping as ORM;
* This entity represents an user group. * This entity represents an user group.
* *
* @ORM\Entity() * @ORM\Entity()
* @ORM\Table("groups") * @ORM\Table("`groups`")
*/ */
class Group extends StructuralDBElement implements HasPermissionsInterface class Group extends StructuralDBElement implements HasPermissionsInterface
{ {