Shioriko/pkg/database/blob.go

17 lines
284 B
Go

package database
import (
"time"
)
type Blob struct {
ID string `gorm:"size:36"`
FilePath string
PreviewFilePath string
ThumbnailFilePath string
Width int
Height int
CreatedAt time.Time
UpdatedAt time.Time
}