gpt4 book ai didi

laravel - Laravel 5.x 中 onUpdate/onDelete 的可用操作

转载 作者:行者123 更新时间:2023-12-02 09:53:48 26 4
gpt4 key购买 nike

here 中所述,在迁移中建立关系时,我们可以使用单词cascade
但我想知道他们在删除更新外键时没有提及其他操作

所以我不确定是否有这样的事情:

$table->foreign('user_id')
->references('id')->on('users')
->onDelete('set null');
//->onDelete('set_null');
//->onDelete('setNull');

或者关于onUpdateno action的同样的事情,就像phpMyAdmin

enter image description here


谢谢

最佳答案

您可以通过以下方式执行 phpmyadmin 中提到的所有选项:

$table->...->onDelete('CASCADE');
$table->...->onDelete('SET NULL');
$table->...->onDelete('RESTRICT');

// do not call the onDelete() method if you want the RESTRICT option.

您必须确保将外键字段设置为可为空:

$table->...->unsigned()->nullable();

关于laravel - Laravel 5.x 中 onUpdate/onDelete 的可用操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39518162/

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