From 9c5e470737c968d647bdcf9d63eb285d293b4e7f Mon Sep 17 00:00:00 2001 From: Chris Farhood Date: Wed, 20 May 2026 05:25:59 +0000 Subject: [PATCH] Save petSizeCategory to pet record on booking creation Co-Authored-By: Paperclip --- src/routes/book.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/book.ts b/src/routes/book.ts index 01b542c..5b9fd27 100644 --- a/src/routes/book.ts +++ b/src/routes/book.ts @@ -194,6 +194,7 @@ bookRouter.post( species: body.petSpecies, breed: body.petBreed ?? null, coatType: body.petCoatType ?? null, + petSizeCategory: body.petSizeCategory ?? null, }) .returning(); const pet = petInserted[0];