photoprism/tag.go

11 lines
144 B
Go
Raw Normal View History

2018-07-18 15:17:56 +02:00
package photoprism
import (
"github.com/jinzhu/gorm"
)
type Tag struct {
gorm.Model
2018-08-03 15:17:13 +02:00
Label string `gorm:"type:varchar(100);unique_index"`
2018-07-18 15:17:56 +02:00
}