updated login/signup form to shadcn
This commit is contained in:
@@ -28,16 +28,31 @@ model Event {
|
||||
id String @id @default(cuid())
|
||||
name String
|
||||
date DateTime?
|
||||
location String?
|
||||
location Location? @relation(fields: [locationid], references: [id])
|
||||
locationid String?
|
||||
creator User @relation("EventCreator", fields: [creatorId], references: [id])
|
||||
creatorId String
|
||||
guests Guest[]
|
||||
eventGuests EventGuest[]
|
||||
notes String?
|
||||
todos EventTodo[]
|
||||
todos EventTodo[]
|
||||
createdAt DateTime @default(now())
|
||||
}
|
||||
|
||||
model Location {
|
||||
id String @id @default(cuid())
|
||||
name String
|
||||
address String
|
||||
city String
|
||||
state String
|
||||
postalCode String
|
||||
country String @default("United States")
|
||||
phone String?
|
||||
email String?
|
||||
|
||||
Event Event[]
|
||||
}
|
||||
|
||||
model Guest {
|
||||
id String @id @default(cuid())
|
||||
event Event @relation(fields: [eventId], references: [id])
|
||||
|
||||
Reference in New Issue
Block a user