feat: add health alerts field and delete actions for pets and clients
- Add health_alerts column to pets table (migration 0001) - Update DB schema, shared types, and API Zod validation - Show health alerts prominently (red badge) in pet cards - Add health alerts field to pet form with allergy/condition placeholder - Add delete button per pet with confirmation dialog - Add delete client button with cascade warning Closes groombook/groombook#2 Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
@@ -12,6 +12,7 @@ const createPetSchema = z.object({
|
||||
breed: z.string().max(200).optional(),
|
||||
weightKg: z.number().positive().optional(),
|
||||
dateOfBirth: z.string().datetime().optional(),
|
||||
healthAlerts: z.string().max(2000).optional(),
|
||||
groomingNotes: z.string().max(2000).optional(),
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user