我在phpmyadmin中添加了一个列到我的mySQL数据库中。现在我想要更新我的实体。所以我在终端写了这个命令:
php bin/console doctrine:schema:update --force
但是我收到了错误消息
在AbstractMySQLDriver.php第98行:
执行'ALTER TABLE members RENAME INDEX uniq_c2502824f81e0671 TO UNIQ_45A1D21 F185E0617'时发生异常:
SQLSTATE [42000]:语法错误或访问冲突:1064 SQL语法中有错误;查看与您的MySQL服务器版本对应的手册,以便在第1行的“INDEX 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]);
}
}
您可以解决此问题,但需要手动将字段添加到实体中。假设您在表用户中添加了名为“token”的varchar。在您的用户实体中,您需要:
/**
* @ Column("token", type="string")
*/
private $token
有了这个,你基本上就是在说明你想要映射到用户的对象标记属性的值是在users表和token字段中。
确保在测试之前清除缓存。