21 lines
388 B
Go
Raw Normal View History

2021-05-09 22:07:23 +07:00
package database
import (
"time"
)
type Blob struct {
2021-05-11 19:21:11 +07:00
ID string `gorm:"size:36"`
FilePath string
PreviewFilePath string
ThumbnailFilePath string
Width int
Height int
2021-05-12 01:22:46 +07:00
Hash1 []byte
Hash2 []byte
Hash3 []byte
Hash4 []byte
2021-05-11 19:21:11 +07:00
CreatedAt time.Time
UpdatedAt time.Time
2021-05-09 22:07:23 +07:00
}