package model
type Metadata struct {
ID uint `gorm:"primarykey"`
Key string `gorm:"uniqueIndex;not null"`
Value string `gorm:"not null;default:''"`
}