feat: add width, height, duration columns to attachments schema

This commit is contained in:
Jannis Braun
2026-03-21 17:15:09 +01:00
parent 948fa6de5c
commit b74e33b349
3 changed files with 15 additions and 1 deletions
+3
View File
@@ -217,6 +217,9 @@ export interface Attachment {
mimetype: string;
size: number;
thumbnailFilename?: string | null;
width?: number | null;
height?: number | null;
duration?: number | null;
createdAt: number;
}