forked from NYANDEV/forgejo
pronouns >:3
This commit is contained in:
parent
3081e7e153
commit
efd2eaea31
1 changed files with 20 additions and 0 deletions
20
models/user/extended_profile.go
Normal file
20
models/user/extended_profile.go
Normal 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))
|
||||
}
|
Loading…
Reference in a new issue