Files
soft_usite/pkg/models/user_meta.go
T
2025-02-06 14:22:29 -05:00

13 lines
205 B
Go

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