portal/model/tus.go

14 lines
163 B
Go
Raw Normal View History

2023-05-15 16:36:00 +00:00
package model
import (
"gorm.io/gorm"
)
type Tus struct {
gorm.Model
2023-05-22 14:59:16 +00:00
ID uint64 `gorm:"primaryKey"`
UploadID string
2023-05-15 16:36:00 +00:00
Hash string
Info string
2023-05-15 16:36:00 +00:00
}