package file import ( "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"` }