mirror of
https://git.rwth-aachen.de/acs/public/villas/web-backend-go/
synced 2025-03-30 00:00:12 +01:00
18 lines
379 B
Go
18 lines
379 B
Go
package file
|
|
|
|
import (
|
|
"git.rwth-aachen.de/acs/public/villas/villasweb-backend-go/user"
|
|
"github.com/jinzhu/gorm"
|
|
"time"
|
|
)
|
|
|
|
type File struct {
|
|
gorm.Model
|
|
Name string
|
|
Path string `gorm:"not null"`
|
|
Type string
|
|
Size uint
|
|
Dimmensions string // TODO: Mixed Type
|
|
FileUser User `gorm:"not null"`
|
|
Date Time `gorm:"default:Time.Now"`
|
|
}
|