diff --git a/database/migrations/2026_01_14_122903_add_more_index_to_hit_and_runs_table.php b/database/migrations/2026_01_14_122903_add_more_index_to_hit_and_runs_table.php new file mode 100644 index 00000000..ca6cdf6f --- /dev/null +++ b/database/migrations/2026_01_14_122903_add_more_index_to_hit_and_runs_table.php @@ -0,0 +1,29 @@ +index('status'); + $table->index('created_at'); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('hit_and_runs', function (Blueprint $table) { + // + }); + } +};