Laravel migration self referencing foreign key issue(Laravel 迁移自引用外键问题)
问题描述
您好,我在使用迁移架构生成器创建表时遇到问题.具有自引用外键的表出现问题.这是产生错误的代码:
Hi I have a problem to create a table using migration schema builder. The problem occure with table with self referencing foreign key. Here is the code which produce error:
Schema::create('cb_category', function($table)
{
$table->integer('id')->primary()->unique()->unsigned();
$table->integer('domain_id')->unsigned();
$table->foreign('domain_id')->references('id')->on('cb_domain');
$table->integer('parent_id')->nullable();
$table->foreign('parent_id')->references('id')->on('cb_category')->onUpdate('cascade')->onDelete('cascade');
$table->string('name');
$table->integer('level');
});
这是错误:
SQLSTATE[HY000]: General error: 1005 Can't create table 'eklik2.#sql-7d4_e' (errno: 150) (SQL: alter table `cb_cate
gory在 del 上添加约束 cb_category_parent_id_foreign 外键 (
parent_id) 引用
cb_category(
id`)更新级联上的级联)(绑定:数组())
goryadd constraint cb_category_parent_id_foreign foreign key (
parent_id) references
cb_category(
id`) on del
ete cascade on update cascade) (Bindings: array (
))
[PDO异常]SQLSTATE[HY000]:一般错误:1005 无法创建表 'eklik2.#sql-7d4_e' (errno: 150)
[PDOException] SQLSTATE[HY000]: General error: 1005 Can't create table 'eklik2.#sql-7d4_e' (errno: 150)
有什么想法吗?
推荐答案
你必须把它分成两个 Schema 块,一个创建列,另一个添加 FK.mysql不能同时做这两件事.
You have to break this into two Schema blocks, one creating the columns, the other adding the FKs. mysql can't do both at the same time.
这篇关于Laravel 迁移自引用外键问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 迁移自引用外键问题
基础教程推荐
- 如何在 PHP 中的请求之间持久化对象 2022-01-01
- XAMPP 服务器不加载 CSS 文件 2022-01-01
- 通过 PHP SoapClient 请求发送原始 XML 2021-01-01
- 在 PHP 中强制下载文件 - 在 Joomla 框架内 2022-01-01
- 在 Woocommerce 中根据运输方式和付款方式添加费用 2021-01-01
- 在多维数组中查找最大值 2021-01-01
- mysqli_insert_id 是否有可能在高流量应用程序中返回 2021-01-01
- 超薄框架REST服务两次获得输出 2022-01-01
- Libpuzzle 索引数百万张图片? 2022-01-01
- WooCommerce 中选定产品类别的自定义产品价格后缀 2021-01-01