fix struct
All checks were successful
/ release (push) Successful in 41s

This commit is contained in:
speatzle 2025-03-19 13:33:57 +01:00
parent fa1deed55a
commit 64fd3da925

View file

@ -20,12 +20,12 @@ type File struct {
ID int `db:"id"`
Path string `db:"path"`
Size int64 `db:"size"`
OldSize int64 `db:"old_size"`
OldSize *int64 `db:"old_size"`
Status constants.FileStatus `db:"status"`
Health constants.FileHealth `db:"health"`
Transcode constants.FileTranscode `db:"transcode"`
MD5 []byte `db:"md5"`
OldMD5 []byte `db:"old_md5"`
OldMD5 *[]byte `db:"old_md5"`
UpdatedAt time.Time `db:"updated_at"`
}