mirror of
https://github.com/tgdrive/teldrive.git
synced 2025-01-08 08:10:05 +08:00
27 lines
1.3 KiB
Go
27 lines
1.3 KiB
Go
package models
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/divyam234/teldrive/pkg/schemas"
|
|
"gorm.io/datatypes"
|
|
)
|
|
|
|
type File struct {
|
|
Id string `gorm:"type:text;primaryKey;default:generate_uid(16)"`
|
|
Name string `gorm:"type:text;not null"`
|
|
Type string `gorm:"type:text;not null"`
|
|
MimeType string `gorm:"type:text;not null"`
|
|
Size *int64 `gorm:"type:bigint"`
|
|
Starred bool `gorm:"default:false"`
|
|
Depth *int `gorm:"type:integer"`
|
|
Category string `gorm:"type:text"`
|
|
Encrypted bool `gorm:"default:false"`
|
|
UserID int64 `gorm:"type:bigint;not null"`
|
|
Status string `gorm:"type:text"`
|
|
ParentID string `gorm:"type:text;index"`
|
|
Parts datatypes.JSONSlice[schemas.Part] `gorm:"type:jsonb"`
|
|
ChannelID *int64 `gorm:"type:bigint"`
|
|
CreatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
|
|
UpdatedAt time.Time `gorm:"default:timezone('utc'::text, now())"`
|
|
}
|