27 lines
467 B
Go
27 lines
467 B
Go
package models
|
|
|
|
import "gorm.io/gorm"
|
|
|
|
type ImportStatus string
|
|
|
|
const (
|
|
ImportStatusQueued ImportStatus = "queued"
|
|
ImportStatusProcessing ImportStatus = "processing"
|
|
ImportStatusCompleted ImportStatus = "completed"
|
|
)
|
|
|
|
func init() {
|
|
registerModel(&Upload{})
|
|
}
|
|
|
|
type Import struct {
|
|
gorm.Model
|
|
UserID uint
|
|
Hash []byte `gorm:"type:binary(32);"`
|
|
Protocol string
|
|
User User
|
|
ImporterIP string
|
|
Status ImportStatus
|
|
Progress float64
|
|
}
|