remove erroroneous file

This commit is contained in:
Matt Young 2025-06-11 23:22:46 -05:00
parent 9331e61839
commit e800937f4d
1 changed files with 0 additions and 32 deletions

View File

@ -1,32 +0,0 @@
<?php
use App\Models\Entry;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('total_scores', function (Blueprint $table) {
$table->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');
}
};