added markdown notes for events

This commit is contained in:
2025-06-29 10:07:01 -04:00
parent 28efa115ad
commit c7c121e23d
13 changed files with 174 additions and 9 deletions

View File

@@ -0,0 +1,2 @@
-- AlterTable
ALTER TABLE "Event" ADD COLUMN "notes" TEXT;

View File

@@ -33,6 +33,7 @@ model Event {
creatorId String
guests Guest[]
eventGuests EventGuest[]
notes String?
createdAt DateTime @default(now())
}