This commit is contained in:
Masroor Ehsan 2025-01-25 15:40:28 +06:00
parent 798d443dcf
commit 81087e408a

View File

@ -21,6 +21,7 @@ public function up(): void
$table->text('notes')->nullable(); $table->text('notes')->nullable();
$table->timestamp('created_at'); $table->timestamp('created_at');
$table->index(['study_id', 'id']);
$table->index(['study_id', 'created_at']); $table->index(['study_id', 'created_at']);
}); });
} }