id(); $table->string('email')->nullable(); $table->string('token')->nullable(); $table->string('status')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('subscribers'); } };