如何修复学说(Symfony 4)中发生的异常?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何修复学说(Symfony 4)中发生的异常?相关的知识,希望对你有一定的参考价值。
我在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 AppEntity;
use DoctrineORMMapping as ORM;
use SymfonyComponentSecurityCoreUserUserInterface;
/**
* @ORMTable(name="members")
* @ORMEntity(repositoryClass="AppRepositoryUserRepository")
*/
class User implements UserInterface, Serializable
{
/**
* @ORMColumn(type="integer")
* @ORMId
* @ORMGeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORMColumn(type="string", length=25, unique=true)
*/
private $username;
/**
* @ORMColumn(type="string", length=64)
*/
private $password;
/**
* @ORMColumn(type="string", length=191, unique=true)
*/
private $email;
/**
* @ORMColumn(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字段中。
确保在测试之前清除缓存。
以上是关于如何修复学说(Symfony 4)中发生的异常?的主要内容,如果未能解决你的问题,请参考以下文章
如何在学说 ORM Symfony 4.1 中使用 array_agg?
Symfony2 抛出学说异常“检查与您的 MySQL 服务器版本相对应的手册,以获取在 'group' 附近使用的正确语法”