package Models
|
|
|
|
import "github.com/gofrs/uuid"
|
|
|
|
type Friend struct {
|
|
Base
|
|
UserID uuid.UUID `gorm:"type:uuid;column:user_id;not null;" json:"user_id"`
|
|
FriendId string `gorm:"column:friend_id;not null" json:"friend_id"` // Stored encrypted
|
|
}
|