id(); $table->char('unique_id_hash', 64); $table->string('recipient_email'); $table->string('recipient_name')->default(''); $table->string('sender_email'); $table->string('sender_name')->default(''); $table->string('domain'); $table->string('subject', 500)->default(''); $table->string('preview', 500)->default(''); $table->json('attachments_json')->nullable(); $table->unsignedBigInteger('attachment_size')->default(0); $table->boolean('is_read')->default(false); $table->timestamp('received_at')->nullable(); $table->timestamps(); $table->unique('unique_id_hash', 'idx_unique_hash'); $table->index('recipient_email', 'idx_recipient'); $table->index('domain', 'idx_domain'); $table->index('created_at', 'idx_created_at'); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('emails'); } };