3bf5a71802
Co-authored-by: Matthew Penner <matthew@pterodactyl.io>
32 lines
803 B
PHP
32 lines
803 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class ChangeForeignKeyToBeOnCascadeDelete extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up(): void
|
|
{
|
|
Schema::table('api_permissions', function (Blueprint $table) {
|
|
$table->dropForeign(['key_id']);
|
|
|
|
$table->foreign('key_id')->references('id')->on('api_keys')->onDelete('cascade');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down(): void
|
|
{
|
|
Schema::table('api_permissions', function (Blueprint $table) {
|
|
$table->dropForeign(['key_id']);
|
|
|
|
$table->foreign('key_id')->references('id')->on('api_keys');
|
|
});
|
|
}
|
|
}
|