Edit File: 2021_10_22_141855_create_cars_table.php
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateCarsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('cars', function (Blueprint $table) { $table->id(); $table->string('model')->nullable(); $table->foreignId('car_category_id')->nullable()->constrained()->references('id')->on('categories')->onDelete('set null'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('cars'); } }
Back to File Manager