teldrive/pkg/models/upload.go
2023-12-08 13:17:33 +05:30

18 lines
502 B
Go

package models
import (
"time"
)
type Upload struct {
UploadId string `gorm:"type:text"`
UserId int64 `gorm:"type:bigint"`
Name string `gorm:"type:text"`
PartNo int `gorm:"type:integer"`
PartId int `gorm:"type:integer"`
Encrypted bool `gorm:"default:false"`
Salt string `gorm:"type:text"`
ChannelID int64 `gorm:"type:bigint"`
Size int64 `gorm:"type:bigint"`
CreatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
}