photoprism/tag.go
2018-09-12 16:37:30 +02:00

10 lines
147 B
Go

package photoprism
import (
"github.com/jinzhu/gorm"
)
type Tag struct {
gorm.Model
TagLabel string `gorm:"type:varchar(100);unique_index"`
}