1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2025-02-19 16:49:04 +00:00

fix avatar update bug ()

This commit is contained in:
Lunny Xiao 2017-05-16 08:36:09 +08:00 committed by GitHub
parent 91417e9715
commit bc299b8317

View file

@ -34,6 +34,7 @@ func useNewNameAvatars(x *xorm.Engine) error {
}
type User struct {
ID int64 `xorm:"pk autoincr"`
Avatar string
UseCustomAvatar bool
}