Ejemplo 1: laravel en delete set null
$table->...->onDelete('set null');
#First make sure you set the foreign key field as nullable:
$table->integer('foreign_id')->unsigned()->nullable();
Ejemplo 2: laravel 7 elocuente al eliminar el esquema nulo del conjunto
$table->foreignId('user_id')
->constrained()
->onDelete('cascade');
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)