guest book added

This commit is contained in:
2025-06-26 12:37:34 -04:00
parent 6aceafeb67
commit 29c91fee7f
17 changed files with 622 additions and 4 deletions

View File

@@ -60,3 +60,17 @@ model InviteToken {
accepted Boolean @default(false)
createdAt DateTime @default(now())
}
model GuestBookEntry {
id String @id @default(cuid())
fName String
lName String
email String?
phone String?
address String?
notes String?
side String // e.g., "Brian", "Janice", etc.
createdAt DateTime @default(now())
}