我在phpmyadmin中的mySQL数据库中添加了一个列。现在,我希望我的实体也进行更新。所以我在终端中写了这个命令:
php bin/console doctrine:schema:update --force
但是我收到错误消息
在AbstractMySQLDriver.php第98行中:
执行'ALTER TABLE成员RENAME时发生异常 将uniq_c2502824f81e0671索引到UNIQ_45A1D21 F185E0617':
SQLSTATE [42000]:语法错误或访问冲突:1064您有一个 您的SQL语法错误;检查与您的手册相对应的手册 MySQL服务器版本,可在'INDEX附近使用正确的语法 第1行的uniq_c2502824f81e0671 TO UNIQ_45A1D21FF85E0617'
这是我的实体:
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Security\Core\User\UserInterface;
/**
* @ORM\Table(name="members")
* @ORM\Entity(repositoryClass="App\Repository\UserRepository")
*/
class User implements UserInterface, \Serializable
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(type="string", length=25, unique=true)
*/
private $username;
/**
* @ORM\Column(type="string", length=64)
*/
private $password;
/**
* @ORM\Column(type="string", length=191, unique=true)
*/
private $email;
/**
* @ORM\Column(name="is_active", type="boolean")
*/
private $isActive;
public function __construct()
{
$this->isActive = true;
// may not be needed, see section on salt below
// $this->salt = md5(uniqid('', true));
}
public function getUsername()
{
return $this->username;
}
public function getSalt()
{
// you *may* need a real salt depending on your encoder
// see section on salt below
return null;
}
public function getPassword()
{
return $this->password;
}
public function getRoles()
{
return array('ROLE_USER');
}
public function eraseCredentials()
{
}
/** @see \Serializable::serialize() */
public function serialize()
{
return serialize(array(
$this->id,
$this->username,
$this->password,
// see section on salt below
// $this->salt,
));
}
/** @see \Serializable::unserialize() */
public function unserialize($serialized)
{
list (
$this->id,
$this->username,
$this->password,
// see section on salt below
// $this->salt
) = unserialize($serialized, ['allowed_classes' => false]);
}
}
答案 0 :(得分:2)
您可以解决此问题,但需要将字段手动添加到实体。假设您在表用户中添加了一个名为“ token”的varchar。在您的用户实体中,您需要:
/**
* @ Column("token", type="string")
*/
private $token
有了这个,您基本上是在告诉说要映射到用户的对象令牌属性的值是在users表和token字段中。
在进行测试之前,请确保清除缓存。