无法弄清楚如何在Laravel中的表上设置适当的onDelete约束。(我正在使用SqLite)
$table->...->onDelete('cascade'); // works
$table->...->onDelete('null || set null'); // neither of them work
我进行了3次迁移,创建了Gallery表:
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
});
我没有收到任何错误。同样,即使“层叠”选项也不起作用(仅在图库表上)。删除图库会删除所有图片。但是删除封面图片,不会删除图库(出于测试目的)。
因为甚至没有触发“级联”,所以我“设置为空”不是问题。
编辑(解决方法):
阅读本文后,我对架构进行了一些更改。现在,图片表包含一个“ is_cover”单元格,该单元格指示该图片是否是其专辑的封面。
解决原始问题的方法仍然受到高度赞赏!
->nullable()