0

Symfony 没有将电子邮件字段标记为唯一。我可以在validation.yml 中设置它,但不是一个好方法。任何人都知道为什么 symfony 没有将电子邮件字段标记为唯一?

我运行以从现有数据库创建实体的命令:

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"/>

在实体/User.php

/**
 * @var string
 *
 * @ORM\Column(name="email", type="string", length=255, nullable=false)
 */
private $email;
4

2 回答 2

1

您需要指定该列必须包含这样的唯一值:

@ORM\Column(name="email", type="string", unique=true, length=255, nullable=false)
                                         ^^^^^^^^^^^
于 2013-01-02T21:23:14.830 回答
1

@ORM\Column(name="username", type="string", length=25, unique=true)

于 2013-03-25T11:25:59.243 回答