feat(desfile): add entry reservation model

This commit is contained in:
2026-09-23 16:28:24 -03:00
parent 9901d449e1
commit 5296d595f1
6 changed files with 155 additions and 1 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Tests\Feature\Desfile;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Support\Facades\Schema;
use Tests\TestCase;
class EntryReservationSchemaTest extends TestCase
{
use RefreshDatabase;
public function test_the_entry_reservations_table_has_the_requested_columns(): void
{
$this->assertTrue(Schema::hasColumns('desfile_entry_reservations', [
'id',
'variant_id',
'fecha_reserva',
'importe',
'tipo_pago',
]));
}
}