You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
model Place {
id Int @id @default(autoincrement())
name String
stamps Stamp[]
}
model Stamp {
id Int @id @default(autoincrement())
count String
mealType MealType @default(breakfast)
place Place? @relation(fields: [placeId], references: [id])
placeId Int?
}
enum MealType {
breakfast
lunch
dinner
night
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: