Float zu Int und Bildupload

This commit is contained in:
Moritz Utcke
2025-09-25 10:20:18 -04:00
parent 82f8cfc0ff
commit 634bef971d
11 changed files with 50 additions and 16 deletions

View File

@@ -15,6 +15,8 @@ model Bild {
created_at DateTime @default(now())
updated_at DateTime @updatedAt @default(now())
benutzer_id String?
benutzer Benutzer? @relation(fields: [benutzer_id], references: [id], onDelete: NoAction, onUpdate: NoAction)
aufnahme_id String?
aufnahme Aufnahme? @relation(fields: [aufnahme_id], references: [id], onDelete: NoAction, onUpdate: NoAction)
}