photoprism/internal/models/country.go
2018-09-19 09:20:57 +02:00

15 lines
290 B
Go

package models
import (
"github.com/jinzhu/gorm"
)
type Country struct {
gorm.Model
CountryCode string
CountryName string
CountryDescription string `gorm:"type:text;"`
CountryNotes string `gorm:"type:text;"`
CountryPhoto *Photo
CountryPhotoID uint
}