Shioriko/pkg/database/blob.go

21 lines
388 B
Go
Raw Normal View History

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