string('email',255)->default(null)->nullable(); $table->string('token',255)->default(null)->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('password_reset_tokens'); } };