Files
2025-04-24 02:07:47 +00:00

13 lines
205 B
Go
Executable File

package models
import (
"gorm.io/gorm"
)
type UserMeta struct {
*gorm.Model
UserID uint `gorm:"user_id" json:"user_id"`
Key uint `gorm:"key" json:"key"`
Value uint `gorm:"value" json:"value"`
}