diff --git a/packages/db/src/schema.ts b/packages/db/src/schema.ts index cb9eaab..aa17bd5 100644 --- a/packages/db/src/schema.ts +++ b/packages/db/src/schema.ts @@ -154,6 +154,16 @@ export const pets = pgTable( sizeCategory: petSizeCategoryEnum("size_category"), coatType: coatTypeEnum("coat_type"), weightKg: numeric("weight_kg", { precision: 5, scale: 2 }), + dateOfBirth: timestamp("date_of_birth"), + healthAlerts: text("health_alerts"), + groomingNotes: text("grooming_notes"), + cutStyle: text("cut_style"), + shampooPreference: text("shampoo_preference"), + specialCareNotes: text("special_care_notes"), + customFields: jsonb("custom_fields").$type>().notNull().default({}), + photoKey: text("photo_key"), + photoUploadedAt: timestamp("photo_uploaded_at"), + image: text("image"), createdAt: timestamp("created_at").notNull().defaultNow(), updatedAt: timestamp("updated_at").notNull().defaultNow(), },