photoprism/internal/models/country.go

16 lines
290 B
Go
Raw Normal View History

2018-09-19 07:20:57 +00:00
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
}