Shioriko/pkg/database/blob.go

17 lines
284 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
CreatedAt time.Time
UpdatedAt time.Time
2021-05-09 15:07:23 +00:00
}