Symfony未将电子邮件字段标记为唯一。我可以在validation.yml中设置它,但不是一个好方法。任何人都知道为什么symfony没有将电子邮件字段标记为唯一?
我运行的命令是从现有db创建实体:
php app/console doctrine:mapping:convert xml ./src/Frontend/AccountBundle/Resources/config/doctrine/metadata/orm --from-database --force
php app/console doctrine:mapping:import FrontendAccountBundle annotation
php app/console doctrine:generate:entities FrontendAccountBundle
我的表:
CREATE TABLE `user` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `email` (`email`),
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=22 ;
在config /...../ User.orm.xml中:
<field name="email" type="string" column="email" length="255" nullable="false"/>
在Entity / User.php
中/**
* @var string
*
* @ORM\Column(name="email", type="string", length=255, nullable=false)
*/
private $email;
答案 0 :(得分:1)
您需要指定列必须包含如下所示的唯一值:
@ORM\Column(name="email", type="string", unique=true, length=255, nullable=false)
^^^^^^^^^^^
答案 1 :(得分:1)
@ORM \ Column(name =“username”,type =“string”,length = 25,unique = true)