linstrom/storage-new/models/UserBeings.go
mstar 67b507f4bd
Some checks are pending
/ test (push) Waiting to run
Describe all types for the new storage system
2025-03-27 10:45:57 +01:00

9 lines
208 B
Go

package models
// Defines an account to be a being of the set type
// Multiple are possible for combination
type UserToBeing struct {
User User
UserId string
Being BeingType `gorm:"type:being_type"`
}