Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Symfony2,执行时doctrine:schema:update出现以下错误
doctrine:schema:update
[PDOException] SQLSTATE[23000]:完整性约束违规:1452 无法添加或更新子行:外键约束失败(enquete., CONSTRAINT FK_880E0D76BF396750FOREIGN KEY ( id) REFERENCES user( id) ON DELETE CASCADE)
enquete
FK_880E0D76BF396750
id
user
您是否在该架构更新中添加外键?你的表中有数据吗?该错误意味着您在数据库中有一条 enquete 记录,该记录引用了用户表中不存在的用户。