使用Symfony我已经创建了一些如下所示的实体类:
但是当我跑步时
php bin/console doctrine:schema:create
我只得到结果:
没有要处理的元数据类。
所以我想知道我做错了什么?
namespace AppBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
* @ORM\Table(name="dimension")
*/
class Dimension
{
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
private $id;
/**
* @ORM\Column(type="integer")
*/
private $width;
/**
* @ORM\Column(type="integer")
*/
private $height;
//getters and setters are also created but removed from this code example
}