gpt4 book ai didi

mysql - 使用外键的 Laravel 可空迁移

转载 作者:行者123 更新时间:2023-11-29 18:47:57 25 4
gpt4 key购买 nike

我有 items 表,其中包含 supplier_id 列以及该列的外键。该列不可为空,我想让它可以为空。所以 up() 方法有效:

$table->integer('supplier_id')->unsigned()->nullable()->change();

但是我无法让 down() 方法工作,总是出现错误:

Cannot change column 'supplier_id': used in a foreign key constraint 'items_supplier_id_foreign'

最近的尝试:

    /**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('items', function (Blueprint $table) {
$table->dropForeign(['supplier_id']);
$table->integer('supplier_id')->unsigned()->nullable(false)->change();
$table->foreign('supplier_id')->references('id')->on('suppliers');
});
}

有什么建议吗?我正在使用 Laravel 5.4

最佳答案

@apokryfos 是对的。请参阅here

Before any changes are made to your table, it’s important to briefly go over what data can (and cannot) be specified within an existing column that you wish to alter to NOT NULL, ensuring that no row is allowed to have a NULL value in that column.

首先,您需要使用seeds填充所有可为空的值然后修改列。或者您可以删除 supplier_id 并使用 default() 方法填充表中的所有行。

关于mysql - 使用外键的 Laravel 可空迁移,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44499628/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com