mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 09:02:28 +01:00
3f6d782ce1
closes #795
33 lines
778 B
PHP
33 lines
778 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
class DropAllocationsWhenNodeIsDeleted extends Migration
|
|
{
|
|
/**
|
|
* Run the migrations.
|
|
*/
|
|
public function up()
|
|
{
|
|
Schema::table('allocations', function (Blueprint $table) {
|
|
$table->dropForeign(['node_id']);
|
|
|
|
$table->foreign('node_id')->references('id')->on('nodes')->onDelete('cascade');
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Reverse the migrations.
|
|
*/
|
|
public function down()
|
|
{
|
|
Schema::table('allocations', function (Blueprint $table) {
|
|
$table->dropForeign(['node_id']);
|
|
|
|
$table->foreign('node_id')->references('id')->on('nodes');
|
|
});
|
|
}
|
|
}
|