2018-09-16 19:09:40 +02:00
|
|
|
package models
|
2018-07-18 15:17:56 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/jinzhu/gorm"
|
|
|
|
)
|
|
|
|
|
2018-11-18 19:18:19 +01:00
|
|
|
// An image or sidecar file that belongs to a photo
|
2018-07-18 15:17:56 +02:00
|
|
|
type File struct {
|
|
|
|
gorm.Model
|
2018-09-27 08:59:53 +02:00
|
|
|
Photo *Photo
|
|
|
|
PhotoID uint
|
|
|
|
FilePrimary bool
|
|
|
|
FileMissing bool
|
2019-04-29 21:54:36 +02:00
|
|
|
FileDuplicate bool
|
2019-04-26 04:13:50 +02:00
|
|
|
FileName string `gorm:"type:varchar(512);index"` // max 3072 bytes / 4 bytes for utf8mb4 = 768 chars
|
2019-04-25 03:52:25 +02:00
|
|
|
FileType string `gorm:"type:varchar(32)"`
|
|
|
|
FileMime string `gorm:"type:varchar(64)"`
|
2018-09-27 08:59:53 +02:00
|
|
|
FileWidth int
|
|
|
|
FileHeight int
|
|
|
|
FileOrientation int
|
|
|
|
FileAspectRatio float64
|
2019-04-29 21:54:36 +02:00
|
|
|
FileMainColor string
|
|
|
|
FileColors string
|
|
|
|
FileLuminance string
|
|
|
|
FileSaturation uint
|
2019-04-25 03:52:25 +02:00
|
|
|
FileHash string `gorm:"type:varchar(128);unique_index"`
|
2019-04-29 21:54:36 +02:00
|
|
|
FileNotes string `gorm:"type:text"`
|
2018-07-18 15:17:56 +02:00
|
|
|
}
|