Make changes to total scores table to have subscores for seating and for advancement.
This commit is contained in:
parent
f0f8038e8a
commit
3c545f0dce
|
|
@ -17,7 +17,8 @@ return new class extends Migration
|
|||
$table->foreignIdFor(Entry::class)->constrained()->cascadeOnDelete()->cascadeOnUpdate();
|
||||
$table->decimal('seating_total', 9, 6);
|
||||
$table->decimal('advancement_total', 9, 6);
|
||||
$table->json('subscore_totals');
|
||||
$table->json('seating_subscore_totals');
|
||||
$table->json('advancement_subscore_totals');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ require __DIR__.'/tabulation.php';
|
|||
require __DIR__.'/user.php';
|
||||
require __DIR__.'/nominationEnsemble.php';
|
||||
|
||||
Route::get('/test', [TestController::class, 'flashTest'])->middleware('auth', 'verified');
|
||||
Route::get('/test', [TestController::class, 'test'])->middleware('auth', 'verified');
|
||||
|
||||
Route::view('/home', 'welcome')->middleware('guest')->name('landing');
|
||||
Route::view('/', 'landing')->name('home');
|
||||
|
|
|
|||
Loading…
Reference in New Issue