id(); $table->timestamps(); }); Schema::create('conversation_participants', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('conversation_id'); $table->unsignedBigInteger('user_id'); $table->timestamp('last_read_at')->nullable(); $table->unique(['conversation_id', 'user_id']); $table->foreign('conversation_id')->references('id')->on('conversations')->onDelete('cascade'); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); }); Schema::create('messages', function (Blueprint $table) { $table->id(); $table->unsignedBigInteger('conversation_id'); $table->unsignedBigInteger('user_id'); $table->text('body'); $table->timestamp('created_at')->useCurrent(); $table->foreign('conversation_id')->references('id')->on('conversations')->onDelete('cascade'); $table->foreign('user_id')->references('id')->on('users')->onDelete('cascade'); $table->index(['conversation_id', 'created_at']); }); } public function down(): void { Schema::dropIfExists('messages'); Schema::dropIfExists('conversation_participants'); Schema::dropIfExists('conversations'); } };