no more base 64 😡

This commit is contained in:
grngxd 2025-06-08 18:44:19 +01:00
parent 064ce7979d
commit 6e34203afd
2 changed files with 5 additions and 15 deletions

View file

@ -26,6 +26,6 @@ type File struct {
ID string `gorm:"primaryKey"`
Path string `gorm:"not null;index"`
Owner string `gorm:"not null;index"`
Size int64 `gorm:"not null;type:bigint"`
CreatedAt time.Time `gorm:"autoCreateTime"`
Base64 string `gorm:"type:text"`
}