laravel-convert-migrations
laravel-convert-migrations copied to clipboard
doesn't create options for the "on delete" attribute in foreign keys
It just doesn't, example:
$table->foreign('user_id')->references('id')->on('users');
should be
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');