Change file size from int to int64

Signed-off-by: Yannis Varni <yannis@edinomis.fr>
This commit is contained in:
yvarni
2025-09-26 09:41:19 +02:00
committed by Sacha Al Himdani
parent c975ebce88
commit 0f8135482e
11 changed files with 17 additions and 12 deletions

View File

@@ -32,7 +32,7 @@ type (
MimeType string `db:"mime_type"`
FileName string `db:"file_name"`
FileKey string `db:"file_key"`
FileSize int `db:"file_size"`
FileSize int64 `db:"file_size"`
CreatedAt time.Time `db:"created_at"`
UpdatedAt time.Time `db:"updated_at"`
DeletedAt *time.Time `db:"deleted_at"`