id()->index(); $table->text('last_message')->nullable(); $table->foreignIdFor(User::class, 'last_user_id')->nullable(); $table->timestamps(); $table->index(['last_user_id', 'created_at']); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('inboxes'); } };