From 7089d97c234a9460830d2f15a49d93053f70ff46 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Wed, 5 Mar 2014 11:10:06 -0600 Subject: [PATCH] [#3116] Fixing wrong table name - singular is used elsewhere --- cookbook/security/entity_provider.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cookbook/security/entity_provider.rst b/cookbook/security/entity_provider.rst index 8ba616eb481..6e0ebabd598 100644 --- a/cookbook/security/entity_provider.rst +++ b/cookbook/security/entity_provider.rst @@ -629,7 +629,7 @@ of the application:: use Doctrine\ORM\Mapping as ORM; /** - * @ORM\Table(name="acme_roles") + * @ORM\Table(name="acme_role") * @ORM\Entity() */ class Role implements RoleInterface