View file File name : 2023_01_25_134037_create_user_website_table.php Content :<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUserWebsiteTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('user_website', function (Blueprint $table) { $table->bigIncrements('id'); $table->unsignedInteger('user_id'); $table->unsignedInteger('team_id')->nullable(); $table->unsignedInteger('website_id'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('user_website'); } }