f5e0f581af
- Doctor notes: add doctorName, reason, prescriptions, nextAppointmentAt fields (schema + API + UI) - Dashboard: baby schedule prediction widget (avg nap/bedtime/first-feed over 14 days) - Growth PDF: embed weight chart as image (SVG→Canvas capture) before data table - Weekly digest: natural language push notification instead of bullet stats Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
6 lines
189 B
SQL
6 lines
189 B
SQL
-- AlterTable
|
|
ALTER TABLE "DoctorNote" ADD COLUMN "doctorName" TEXT,
|
|
ADD COLUMN "nextAppointmentAt" TIMESTAMP(3),
|
|
ADD COLUMN "prescriptions" TEXT,
|
|
ADD COLUMN "reason" TEXT;
|