表存在错误运行模式:更新控制台命令

时间:2018-06-12 15:49:00

标签: php symfony doctrine

运行doctrine:schema:update --dump-sql以建立从现有家庭实体到新寻求实体的一对一关系会导致错误

  

表名为' projectmana.household'已经存在。

开发模式调试工具栏显示无效实体0.错误的来源是什么?

家庭实体包括:

/**
 *
 * @ORM\OneToOne(targetEntity="Seeking")
 */
protected $seeking;

public function getSeeking()
{
    return $this->seeking;
}

寻求实体包括:

/**
 * @ORM\Column(name="id", type="integer")
 * @ORM\Id
 * @ORM\GeneratedValue(strategy="IDENTITY")
 */
protected $id;

/**
 * @ORM\Column(name="seeking", type="string", nullable=false)
 * @Assert\NotBlank(message="Service may not be blank")
 */
protected $seeking;

public function setSeeking($seeking)
{
    $this->seeking = $seeking;
    return $this;
}

public function getSeeking()
{
    return $this->seeking;
}

1 个答案:

答案 0 :(得分:0)

检查新班级的注释。