Edit file File name : 2023_04_23_172421_create_chat_table.php Content :<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateChatTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('chat', function (Blueprint $table) { $table->id(); $table->string('instanceId')->nullable(); $table->string('message_id')->nullable(); $table->string('from')->nullable(); $table->string('to')->nullable(); $table->string('type')->nullable(); $table->string('status')->nullable(); $table->boolean('read')->nullable(); $table->mediumText('body')->nullable(); $table->string('media')->nullable(); $table->boolean('fromMe')->nullable(); $table->string('time')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('chat'); } } Save