我还有一些与数据库相关的实体工作正常。我创建了一个新实体:新实体.php
我想在我的数据库中创建表 newentity,而无需再接触任何东西。
它对我有用的唯一方法是从数据库中删除(当然,在保存之后(所有表并写入:
php bin/console doctrine:schema:create
行为:
php bin/console doctrine:schema:update
给我这个错误:
Compile Error: Cannot declare class AppEntityJosMenu, because the name is already in use
JosMenu是我的第一个实体。
谢谢。
试试看:
namespace AppBundleEntity;
use DoctrineORMMapping as ORM;
/**
* @ORMEntity
* @ORMTable(name="jos_menu_2") //here your table name
*/
class JosMenu
{
***************************************************************
并检查其他实体名称可能已经存在