Shioriko/pkg/database/blob.go
2021-05-10 09:45:32 +07:00

13 lines
154 B
Go

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