From e800937f4df643c55893c791d0250681638ddc20 Mon Sep 17 00:00:00 2001 From: Matt Young Date: Wed, 11 Jun 2025 23:22:46 -0500 Subject: [PATCH] remove erroroneous file --- ...06_12_034242_create_total_scores_table.php | 32 ------------------- 1 file changed, 32 deletions(-) delete mode 100644 database/migrations/2025_06_12_034242_create_total_scores_table.php 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'); - } -};