pronouns >:3

This commit is contained in:
femsci 2023-11-15 01:51:30 +01:00
parent 3081e7e153
commit efd2eaea31
Signed by: femsci
GPG key ID: 08F7911F0E650C67

View file

@ -0,0 +1,20 @@
// SPDX-License-Identifier: MIT
package user
import (
"code.gitea.io/gitea/models/db"
"code.gitea.io/gitea/modules/timeutil"
)
// User represents the object of individual and member of organization.
type ExtendedUserProfile struct {
ID int64 `xorm:"pk autoincr"`
Website string
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
Pronouns string //haha >:333333
}
func init() {
db.RegisterModel(new(ExtendedUserProfile))
}