8 lines
161 B
Go
8 lines
161 B
Go
package model
|
|
|
|
type Metadata struct {
|
|
ID uint `gorm:"primarykey"`
|
|
Key string `gorm:"uniqueIndex;not null"`
|
|
Value string `gorm:"not null;default:''"`
|
|
}
|