8 lines
158 B
Go
8 lines
158 B
Go
package database
|
|
|
|
type User struct {
|
|
Id int64
|
|
Name string `xorm:"not null unique"`
|
|
PwHash string //Password hash
|
|
Role int64 `xorm:"default 0"`
|
|
}
|