PATH:
home
/
rwabteecom
/
project_11
/
database
/
migrations
/
Editing: 2023_05_08_070542_create_feature_plan_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { public function up(): void { Schema::create('feature_plan', function (Blueprint $table) { $table->foreignId('plan_id')->nullable()->constrained()->nullOnDelete(); $table->foreignId('feature_id')->nullable()->constrained()->nullOnDelete(); }); } public function down(): void { Schema::dropIfExists('feature_plan'); } };
SAVE
CANCEL