Shioriko/pkg/database/blob.go

15 lines
184 B
Go

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