feat: add description field to File model and update related components for file details and actions

This commit is contained in:
2025-04-16 18:50:31 +02:00
parent 3048c00648
commit e1097ba1be
7 changed files with 373 additions and 167 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ model File {
size Int // Size in bytes
extension String
uploadDate DateTime @default(now())
description String @default("")
uploadedBy User? @relation(fields: [uploadedById], references: [id], onDelete: SetNull)
uploadedById String?
}