Shioriko/pkg/database/blob.go
2021-05-11 17:33:22 +07:00

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
}