Fixes issue with name for unassigned audition room id 0

#51
This commit is contained in:
Matt Young 2024-07-27 16:34:47 -05:00
parent 7a45d4ddbc
commit 5aec942b4a
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ return new class extends Migration
if (! Room::find(0)) { if (! Room::find(0)) {
$room = Room::create([ $room = Room::create([
'id' => 0, 'id' => 0,
'name' => 'No Guide Assigned', 'name' => 'Unassigned',
'description' => 'These auditions have no room',
]); ]);
$room->update([ $room->update([
'id' => 0, 'id' => 0,