Some checks are pending
/ test (push) Waiting to run
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
7 lines
153 B
Go
7 lines
153 B
Go
package models
|
|
|
|
type UserAuthMethod struct {
|
|
UserId string
|
|
AuthMethod AuthenticationMethodType `gorm:"type:auth_method_type"`
|
|
Token []byte
|
|
}
|