id(); $table->string('from'); $table->string('from_hash')->index(); $table->string('to')->index(); $table->string('to_hash')->index(); $table->string('title'); $table->longText('body'); $table->string('from_addr'); $table->string('from_protocol'); $table->timestamp('received_at'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('mails'); } };