我依靠外部api来填充我的表格,通过这种关系,我可以在应用程序上处理一些所需的功能,而且查询次数较少。
在使用命令后创建表和FK而不是错误和警告,但我不知道我是否可以绕过这些错误,否则将来会产生问题。
显然我可以引用id并且问题会消失,但如果可能的话,现在需要。
我有两张桌子:
RARITIES
id
name
...
ITEMS
id
item_rarity
...
实体看起来像:
class Rarity
{
...
/**
* @ORM\OneToMany(targetEntity="Item", mappedBy="rarity")
*/
private $items;
public function __construct() {
$this->items = new ArrayCollection();
}
...
}
class Item
{
...
/**
* @ORM\ManyToOne(targetEntity="Rarity", inversedBy="items")
* @ORM\JoinColumn(name="item_rarity", referencedColumnName="name")
**/
private $rarity;
...
}
当我创建或更新架构时,它会输出一些错误和警告:
[Doctrine\ORM\Tools\ToolsException]
Schema-Tool failed with Error 'An exception occurred while executing 'ALTER TABLE items ADD CONSTRAINT FK_E11EE94D3139CB89 FOREIGN KEY (item_rarity) REFERENCES rarities (name)':
SQLSTATE[HY000]: General error: 1005 Can't create table 'd2a.#sql-4fa_7c' (errno: 150)' while executing DDL: ALTER TABLE items ADD CONSTRAINT FK_E11EE94D3139CB89 FOREIGN KEY (item_rarity) REFERENCES rarities (name)
[Doctrine\DBAL\DBALException]
An exception occurred while executing 'ALTER TABLE items ADD CONSTRAINT K_E11EE94D3139CB89 FOREIGN KEY (item_rarity) REFERENCES rarities (name)':
SQLSTATE[HY000]: General error: 1005 Can't create table 'd2a.#sql-4fa_7c' (errno: 150)
[PDOException]
SQLSTATE[HY000]: General error: 1005 Can't create table 'd2a.#sql-4fa_7c' (errno: 150
感谢您的建议!
答案 0 :(得分:1)
我怀疑这与尝试通过'name'链接两者有关,而Doctrine认为它不是唯一的标识符。就教义而言,可能有两个同名的Rarities。 'id'工作的原因是因为它使用@Id
在注释中声明为主键,因此被假定为唯一:
/**
* @ORM\Column(type="integer")
* @ORM\Id
* @ORM\GeneratedValue(strategy="AUTO")
*/
protected $id;
不考虑它,我会假设这种关系要求Items
引用回主键。
答案 1 :(得分:0)
首先,感谢Alex,他告诉我最新情况。
就像他说的那样#34;就教义而言,可能会有两个同名的Rarities"所以,让rarities.name列为唯一:
/**
* Rarity
*
* @ORM\Table(name="rarities",
* uniqueConstraints={@ORM\UniqueConstraint(name="unique_name", columns={"name"})})
* @ORM\Entity
*/
class Rarity
{
它有效,没有错误,没有警告,列items.item_rarity引用rarities.name和rarities.name不是表中的主键。
我希望它能帮到别人,我花了很多时间!