不知道如何在 Laravel 的表上设置合适的 onDelete 约束(我正在使用 SqLite)
$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
});
我没有收到任何错误。而且,即使是“级联”选项也不起作用(只能在画廊桌上使用)。删除库会删除所有图片。但删除封面图片,不会删除图库(为了测试目的)。
因为即使是“级联”也没有被触发,所以我“设置为空”不是问题。
编辑(变通方法) :
在阅读了这篇 文章文章之后,我稍微改变了一下我的模式。现在,Pictures 表包含一个“ is _ cover”单元格,它指示该图片是否为其相册中的封面。
原来问题的解决方案仍然是高度赞赏!