From d830c714dff1a3bd6ee0587be4c0816777d8963a Mon Sep 17 00:00:00 2001 From: jmontoyaa Date: Mon, 31 Oct 2016 10:51:30 +0100 Subject: [PATCH] Remove email_canonical unique (email is not unique) --- src/Chamilo/UserBundle/Entity/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Chamilo/UserBundle/Entity/User.php b/src/Chamilo/UserBundle/Entity/User.php index b910963181..5e3489e5e2 100644 --- a/src/Chamilo/UserBundle/Entity/User.php +++ b/src/Chamilo/UserBundle/Entity/User.php @@ -85,7 +85,7 @@ class User implements UserInterface //implements ParticipantInterface, ThemeUser /** * @var string - * @ORM\Column(name="email_canonical", type="string", length=100, nullable=false, unique=true) + * @ORM\Column(name="email_canonical", type="string", length=100, nullable=false, unique=false) */ protected $emailCanonical;