10 lines
142 B
Go
10 lines
142 B
Go
package models
|
|
|
|
type File struct {
|
|
Model
|
|
|
|
Filename string
|
|
ContentType string
|
|
Size int
|
|
Body []byte `gorm:"type:bytea"`
|
|
}
|