doctrine:generate:实体不会创建所有属性

时间:2017-01-08 11:48:24

标签: php mysql symfony doctrine-orm

Mysql 5.6 学说2.5

我创建了一个包含19列的表并运行

php app/console doctrine:generate:entities AcmeBlogBundle

如下所述:

http://symfony.com/doc/current/doctrine/reverse_engineering.html

创建了权限类和存储库类,但只创建了id列。另外我注意到没有元信息,例如id的自动编号...我也尝试使用-vvv,但它运行没有错误。

    namespace Test\CoreBundle\Entity;

/**
 * TestEvent
 */
class TestEvent
{
    /**
     * @var integer
     */
    private $id;


    /**
     * Get id
     *
     * @return integer
     */
    public function getId()
    {
        return $this->id;
    }
}

为什么不创建其他18个属性?

0 个答案:

没有答案