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';
});
pictures テーブルの作成:
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
});
エラーは表示されません。また、「カスケード」オプションも機能しません (ギャラリー テーブルのみ)。ギャラリーを削除すると、すべての写真が削除されます。ただし、カバー画像を削除しても、ギャラリーは削除されません (テスト目的)。
「カスケード」すらトリガーされないので、「set null」は問題ありません。
編集(回避策):
この記事を読んだ後、スキーマを少し変更しました。現在、pictures テーブルには、この写真がアルバムのカバーであるかどうかを示す「is_cover」セルが含まれています。
元の問題に対する解決策は、依然として高く評価されています。