linstrom/storage-new/models/UserAuthentication.go
mstar 8d4ba2ecae
Some checks are pending
/ test (push) Waiting to run
More work on defining the new data structure
2025-03-26 17:14:42 +01:00

8 lines
170 B
Go

package models
type UserAuthMethod struct {
User User
UserId string
AuthMethod AuthenticationMethodType `gorm:"type:auth_method_type"`
Token []byte
}