8 lines
173 B
Go
8 lines
173 B
Go
|
package entity
|
||
|
|
||
|
type Metadata struct {
|
||
|
ID uint `json:"id"`
|
||
|
Key string `gorm:"unique;not null" json:"key"`
|
||
|
Value string `gorm:"not null;default:''" json:"value"`
|
||
|
}
|