gpt4 book ai didi

php - Laravel Schema onDelete 设置为空

转载 作者:IT老高 更新时间:2023-10-28 11:54:33 25 4
gpt4 key购买 nike

无法弄清楚如何在 Laravel 中的表上设置正确的 onDelete 约束。 (我正在使用 SqlLite)

$table->...->onDelete('cascade'); // works
$table->...->onDelete('null || set null'); // neither of them work

我有 3 个迁移,正在创建库表:

Schema::create('galleries', function($table)
{
$table->increments('id');
$table->string('name')->unique();
$table->text('path')->unique();
$table->text('description')->nullable();
$table->timestamps();
$table->engine = 'InnoDB';
});

创建图片表:

Schema::create('pictures', function($table)
{
$table->increments('id');
$table->text('path');
$table->string('title')->nullable();
$table->text('description')->nullable();
$table->integer('gallery_id')->unsigned();
$table->foreign('gallery_id')
->references('id')->on('galleries')
->onDelete('cascade');
$table->timestamps();
$table->engine = 'InnoDB';
});

将图库表格链接到图片:

Schema::table('galleries', function($table)
{
// id of a picture that is used as cover for a gallery
$table->integer('picture_id')->after('description')
->unsigned()->nullable();
$table->foreign('picture_id')
->references('id')->on('pictures')
->onDelete('cascade || set null || null'); // neither of them works
});

我没有收到任何错误。此外,即使“级联”选项也不起作用(仅在画廊表上)。删除图库会删除所有图片。但删除封面图片,不会删除图库(用于测试目的)。

由于连“级联”都没有触发,所以我“置空”不是问题。

编辑(解决方法):

看完这篇article我已经改变了我的架构。现在,图片表包含一个“is_cover”单元格,指示这张图片是否是其相册的封面。

仍然非常感谢原始问题的解决方案!

最佳答案

如果要在删除时设置 null:

$table->...->onDelete('set null');

首先确保将外键字段设置为可为空:

$table->integer('foreign_id')->unsigned()->nullable();

关于php - Laravel Schema onDelete 设置为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20869072/

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