added engagement congratulations to guest book
This commit is contained in:
BIN
prisma/migrations/.DS_Store
vendored
Normal file
BIN
prisma/migrations/.DS_Store
vendored
Normal file
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
-- AlterTable
|
||||
ALTER TABLE "GuestBookEntry" ADD COLUMN "congratulated" BOOLEAN;
|
||||
@@ -84,16 +84,17 @@ model InviteToken {
|
||||
}
|
||||
|
||||
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.
|
||||
eventGuests EventGuest[]
|
||||
createdAt DateTime @default(now())
|
||||
id String @id @default(cuid())
|
||||
fName String
|
||||
lName String
|
||||
email String?
|
||||
phone String?
|
||||
address String?
|
||||
notes String?
|
||||
side String
|
||||
congratulated Boolean?
|
||||
eventGuests EventGuest[]
|
||||
createdAt DateTime @default(now())
|
||||
}
|
||||
|
||||
model EventGuest {
|
||||
|
||||
Reference in New Issue
Block a user