Edit file File name : 2023_01_25_134037_create_error_token_table.php Content :<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateErrorTokenTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('error_token', function (Blueprint $table) { $table->string('token_recebido')->nullable(); $table->string('token')->nullable(); $table->string('website')->nullable(); $table->timestamp('created_at')->useCurrent(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('error_token'); } } Save