2017-08-16 05:21:47 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
|
|
|
|
class CascadeDeletionWhenAParentServiceIsDeleted extends Migration
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function up(): void
|
2017-08-16 05:21:47 +02:00
|
|
|
{
|
|
|
|
Schema::table('service_options', function (Blueprint $table) {
|
|
|
|
$table->dropForeign(['service_id']);
|
|
|
|
|
|
|
|
$table->foreign('service_id')->references('id')->on('services')->onDelete('cascade');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*/
|
2022-11-25 21:29:04 +01:00
|
|
|
public function down(): void
|
2017-08-16 05:21:47 +02:00
|
|
|
{
|
|
|
|
Schema::table('service_options', function (Blueprint $table) {
|
|
|
|
$table->dropForeign(['service_id']);
|
|
|
|
|
|
|
|
$table->foreign('service_id')->references('id')->on('services');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|