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