Datenbank

This commit is contained in:
Moritz Utcke
2025-04-29 12:20:21 -03:00
parent e18f27675d
commit c0c22453f1
22 changed files with 394 additions and 1 deletions

View File

@@ -0,0 +1,9 @@
model Conversation {
id String @unique @default(cuid())
name String?
participants Participant[]
messages Message[]
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}