This commit is contained in:
parent
fa1deed55a
commit
64fd3da925
1 changed files with 2 additions and 2 deletions
|
@ -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"`
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue