linstrom/storage-new/models/UserRelation.go
mStar 714f528641
Some checks are pending
/ test (push) Waiting to run
Rework backing storage system
Step one: Copy the struct definitions over into a new, dedicated
submodule
Step two: Make a generator script
Step three: Define helper functions for various queries
2025-03-20 21:39:10 +01:00

7 lines
142 B
Go

package models
type UserRelation struct {
UserId string
TargetUserId string
Relation RelationType `gorm:"type:relation_type"`
}