diff --git a/database/migrations/2025_06_12_034242_create_total_scores_table.php b/database/migrations/2025_06_12_034242_create_total_scores_table.php deleted file mode 100644 index 0c5d89d..0000000 --- a/database/migrations/2025_06_12_034242_create_total_scores_table.php +++ /dev/null @@ -1,32 +0,0 @@ -id(); - $table->foreignIdFor(Entry::class)->constrained()->cascadeOnDelete()->cascadeOnUpdate(); - $table->decimal('seating_total', 9, 6)->after('subscores'); - $table->decimal('advancement_total', 9, 6)->after('seating_total'); - $table->json('subscore_totals'); - $table->timestamps(); - }); - } - - /** - * Reverse the migrations. - */ - public function down(): void - { - Schema::dropIfExists('total_scores'); - } -};