Shioriko/pkg/database/blob.go

15 lines
184 B
Go
Raw Normal View History

2021-05-09 15:07:23 +00:00
package database
import (
"time"
)
type Blob struct {
ID string `gorm:"size:36"`
FilePath string
2021-05-11 10:33:22 +00:00
Width int
Height int
2021-05-09 15:07:23 +00:00
CreatedAt time.Time
UpdatedAt time.Time
}