Edit file File name : 2023_03_19_224501_create_log_lead_table.php Content :<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateLogLeadTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('log_lead', function (Blueprint $table) { $table->id(); $table->integer('customer_id')->nullable(); $table->string('ip')->nullable(); $table->integer('website_id')->nullable(); $table->string('name')->nullable(); $table->integer('type'); // 1 - Verificação | 2 - Envio $table->string('response'); $table->boolean('success'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('log_lead'); } } Save