mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-08 08:10:05 +08:00
16 lines
418 B
Go
16 lines
418 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"`
|
|
ChannelID int64 `gorm:"type:bigint"`
|
|
Size int64 `gorm:"type:bigint"`
|
|
CreatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
|
|
}
|