我对扩展Sonata UserBundle实体有疑问。我需要向实体添加更多字段。 首先,我将Sonata UserBundle扩展到文件夹src \ Application \ Sonata \ UserBundle上的项目中 然后,我尝试将这些字段添加到同一文件夹中可用的用户实体上:
<?php
namespace App\Application\Sonata\UserBundle\Entity;
use Sonata\UserBundle\Entity\BaseUser as BaseUser;
/**
* This file has been generated by the SonataEasyExtendsBundle.
*
* @link https://sonata-project.org/easy-extends
*
* References:
* @link http://www.doctrine-project.org/projects/orm/2.0/docs/reference/working-with-objects/en
*/
class User extends BaseUser
{
/**
* @var int $id
*/
protected $id;
/**
* Get id.
*
* @return int $id
*/
public function getId()
{
return $this->id;
}
/**
* @var string
* @ORM\Column(type="string")
*/
protected $accountType;
/**
* @var int
* @ORM\ManyToOne(targetEntity="App\Entity\Specialty")
*/
protected $specialty;
/**
* Get AccountType
* @return string
*/
public function getAccountType()
{
return $this->accountType;
}
/**
* Set AccountType
* @param string $accountType
* @return $this
*/
public function setAccountType($accountType)
{
$this->accountType = $accountType;
return $this;
}
/**
* Get Specialty
* @return int
*/
public function getSpecialty()
{
return $this->specialty;
}
/**
* Set Specialty
* @param int $specialty
* @return Specialty
*/
public function setSpecialty($specialty)
{
$this->specialty = $specialty;
return $this;
}
}
在fos_user.yml上,我映射了该实体。但是,当我尝试更新架构时,请运行以下命令:
php bin/console doctrine:s:u --force
我有一条消息指出没有任何更新-您的数据库已经与当前实体元数据同步。
添加的字段未添加到我的表中。我不是Symfony的专家,所以我试图尽可能地解释自己的情况。
专业实体:
<?php
namespace App\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Table(name="specialties")
* @ORM\Entity
*/
class Specialty
{
/**
* @ORM\Id()
* @ORM\GeneratedValue()
* @ORM\Column(type="integer")
*/
private $id;
/**
* @ORM\Column(type="string", length=255)
*/
private $name;
/**
* @ORM\ManyToOne(targetEntity="App\Entity\Icon")
*/
private $icon;
/**
* @ORM\Column(type="boolean")
*/
private $status;
public function getId()
{
return $this->id;
}
public function setId($id)
{
$this->id = $id;
}
/**
* Get string
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Set name
* @param string $name
* @return Specialty
*/
public function setName($name)
{
$this->name = $name;
return $this;
}
/**
* @return mixed
*/
public function getIcon()
{
return $this->icon;
}
/**
* @param mixed $icon
* @return $this
*/
public function setIcon($icon)
{
$this->icon = $icon;
return $this;
}
public function getStatus()
{
return $this->status;
}
public function setStatus($status)
{
$this->status = $status;
return $this;
}
public function __toString()
{
return $this->getId() ? (string) $this->getName() : '-';
}
}