diff --git a/packages/db/src/schema.ts b/packages/db/src/schema.ts index de0ab29..ca355d8 100644 --- a/packages/db/src/schema.ts +++ b/packages/db/src/schema.ts @@ -164,6 +164,10 @@ export const pets = pgTable( specialCareNotes: text("special_care_notes"), coatType: coatTypeEnum("coat_type"), petSizeCategory: petSizeCategoryEnum("pet_size_category"), + temperamentScore: integer("temperament_score"), + temperamentFlags: text("temperament_flags"), + medicalAlerts: text("medical_alerts"), + preferredCuts: text("preferred_cuts"), customFields: jsonb("custom_fields").$type>().notNull().default({}), photoKey: text("photo_key"), photoUploadedAt: timestamp("photo_uploaded_at"),