Shioriko/pkg/database/blob.go

13 lines
154 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
CreatedAt time.Time
UpdatedAt time.Time
}