phoebe/pkg/database/blob.go

15 lines
184 B
Go
Raw Normal View History

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