嗨,设置了一个带有表状态和存储位置的数据库。我已经为两者创建了实体。以及休息服务。在我的本地计算机上发布新位置时,一切正常。
我已将我的项目部署到另一台服务器,当我尝试在此计算机上发布新位置时,出现以下错误
Code: 23000
Message: SQLSTATE[23000]: Integrity constraint violation: 1452 Cannot add or update a child row: a foreign key constraint fails (`vitanica`.`StoreLocation`, CONSTRAINT `storelocation_ibfk_1` FOREIGN KEY (`state_id`) REFERENCES `state` (`id`))
File: /home/audioglobe.com/zend/vendor/doctrine/dbal/lib/Doctrine/DBAL/Statement.php
Line: 131
我不明白为什么这会在一台机器上工作而不是另一台机器上。提前感谢您对此问题的任何想法!
这是我的表格:
mysql> show create table StoreLocation
| StoreLocation | CREATE TABLE `StoreLocation` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(60) DEFAULT NULL,
`address` varchar(80) DEFAULT NULL,
`city` varchar(80) DEFAULT NULL,
`state_id` int(11) DEFAULT NULL,
`zip` varchar(12) DEFAULT NULL,
`phone` varchar(20) DEFAULT NULL,
`lat` float(10,6) DEFAULT NULL,
`lng` float(10,6) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `state` (`state_id`),
CONSTRAINT `storelocation_ibfk_1` FOREIGN KEY (`state_id`) REFERENCES `state` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=latin1 |
mysql> show create table State
| State | CREATE TABLE `State` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`code` varchar(10) NOT NULL,
`state` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=latin1 |
还有我的实体中的一个片段:
/** @Entity */
class State
{
....
/** @OneToMany(targetEntity="StoreLocation", mappedBy="state") */
private $stores;
}
/** @Entity @HasLifecycleCallbacks*/
class StoreLocation
{
/**
* @ManyToOne(targetEntity="State", inversedBy="id")
*/
private $state;
}
似乎 fk 失败了,因为 mysql 在生产中区分大小写。表名State
,尽管约束引用state(id)
。我将所有表名称更改为小写,并将属性@Table('state')
添加到我的实体。现在一切都按预期工作!谢谢你们的帮助!
约束的要点是,在 StoreLocation
内,您不能有不存在于State
表中的state_id
。
您是否在State
表中填充了完整的状态列表?