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 Attachment {
id String @id @unique @default(uuid())
name String?
kategorie String?
mime String
attached_to_messages Message[]
}