id(); $table->string('message', 500); $table->string('email', 250); $table->string('sender', 50); $table->softDeletes(); $table->timestamps(); }); } public function down(): void { Schema::dropIfExists('messages'); } };