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:''"`
|
||
|
}
|